FieldValue
A mapping between a schema type and its native variable type.
Definition
Type: FieldValue = T extends 'string' ? string : T extends 'number' ? number : T extends 'boolean' ? boolean : T extends 'date' ? Date : T extends 'set' ? Set<CoreValue> : T extends 'map' ? Dictionary<string, CoreValue> : T extends 'richtext' ? RichText : CoreValue