UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

13 lines (12 loc) 565 B
import React from "react"; import { FieldProps } from "../../index"; import type { FireCMSEditorProps } from "../../editor"; interface MarkdownEditorFieldProps { highlight?: { from: number; to: number; }; editorProps?: Partial<FireCMSEditorProps>; } export declare function MarkdownEditorFieldBinding({ property, propertyKey, value, setValue, includeDescription, showError, error, minimalistView, disabled: disabledProp, isSubmitting, context, customProps, }: FieldProps<string, MarkdownEditorFieldProps>): React.JSX.Element; export {};