CodeMirrorEditorComment.d.ts 174 B

123456
  1. type Props = {
  2. onChange?: (value: string) => void;
  3. onComment?: () => void;
  4. };
  5. export declare const CodeMirrorEditorComment: (props: Props) => JSX.Element;
  6. export {};