react-ace
Version:
A react component for Ace Editor
29 lines (28 loc) • 533 B
text/typescript
import ace, { IAceEditorProps } from "./ace";
import diff, { IDiffEditorProps, IDiffEditorState } from "./diff";
import split, { ISplitEditorProps } from "./split";
import {
IAceOptions,
IAnnotation,
ICommand,
ICommandBindKey,
ICommandManager,
IEditorProps,
IMarker
} from "./types";
export {
split,
diff,
IAceOptions,
IAceEditorProps,
IAnnotation,
ICommand,
ICommandBindKey,
ICommandManager,
IDiffEditorProps,
IDiffEditorState,
IEditorProps,
IMarker,
ISplitEditorProps
};
export default ace;