Single line text input.
type TextField = string | null;
type Name = TextField; // Result: string | null
type Name = NonNullable<TextField>; // Result: string
TextAreaField
The TextArea field type used in Statamic.
TimeField
The Time field type used in Statamic.
On this page
Contribute