@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
10 lines (9 loc) • 345 B
text/typescript
/**
* Simple textual input for Single-line string fields.
*/
export type SingleLineEditorConfiguration = {
/** Indicates if the field should be shown bigger, as a field representing a heading */
heading: boolean;
/** A placeholder that will be shown in the editor's input to provide editors with an example */
placeholder?: string;
};