Multi-line text input.
type TextAreaField = string | null;
type Description = TextAreaField; // Result: string | null
type Description = NonNullable<TextAreaField>; // Result: string
TermsField
The Terms field type used in Statamic.
TextField
The Text field type used in Statamic.
On this page
Contribute