codemirror-editor.d.ts 336 B

1234
  1. import type { ReactCodeMirrorProps } from '@uiw/react-codemirror';
  2. import type { SWRResponse } from 'swr';
  3. import type { UseCodeMirrorEditor } from '../services';
  4. export declare const useCodeMirrorEditorIsolated: (key: string | null, container?: HTMLDivElement | null, props?: ReactCodeMirrorProps) => SWRResponse<UseCodeMirrorEditor>;