CodeMirrorEditorMain.d.ts 193 B

1234567
  1. type Props = {
  2. onChange?: (value: string) => void;
  3. onSave?: () => void;
  4. indentSize?: number;
  5. };
  6. export declare const CodeMirrorEditorMain: (props: Props) => JSX.Element;
  7. export {};