index.d.ts 493 B

123456
  1. import ace, { IAceEditorProps } from "./ace";
  2. import diff, { IDiffEditorProps, IDiffEditorState } from "./diff";
  3. import split, { ISplitEditorProps } from "./split";
  4. import { IAceOptions, IAnnotation, ICommand, ICommandBindKey, ICommandManager, IEditorProps, IMarker } from "./types";
  5. export { split, diff, IAceOptions, IAceEditorProps, IAnnotation, ICommand, ICommandBindKey, ICommandManager, IDiffEditorProps, IDiffEditorState, IEditorProps, IMarker, ISplitEditorProps };
  6. export default ace;