@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
20 lines (19 loc) • 402 B
text/typescript
/**
* Markdown editor for Multiple-paragraph text fields.
*/
export type MarkdownEditorConfiguration = {
/** Specify which buttons the toolbar should have (default: all allowed values) */
toolbar?: Array<
| 'heading'
| 'bold'
| 'italic'
| 'strikethrough'
| 'code'
| 'unordered_list'
| 'ordered_list'
| 'quote'
| 'link'
| 'image'
| 'fullscreen'
>;
};