MCPcopy
hub / github.com/securingsincity/react-ace / IDiffEditorProps

Interface IDiffEditorProps

src/diff.tsx:7–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import { IEditorProps } from "./types";
6
7export interface IDiffEditorProps {
8 cursorStart?: number;
9 editorProps?: object;
10 enableBasicAutocompletion?: boolean | string[];
11 enableLiveAutocompletion?: boolean | string[];
12 focus?: boolean;
13 fontSize?: number;
14 height?: string;
15 highlightActiveLine?: boolean;
16 maxLines?: number;
17 minLines?: number;
18 mode?: string;
19 name?: string;
20 className?: string;
21 onLoad?: (editor: IEditorProps) => void;
22 onChange?: (value: string[], event?: any) => void;
23 onPaste?: (value: string) => void;
24 onScroll?: (editor: IEditorProps) => void;
25 orientation?: string;
26 readOnly?: boolean;
27 scrollMargin?: number[];
28 setOptions?: object;
29 showGutter?: boolean;
30 showPrintMargin?: boolean;
31 splits?: number;
32 style?: object;
33 tabSize?: number;
34 theme?: string;
35 value?: string[];
36 width?: string;
37 wrapEnabled?: boolean;
38}
39
40export interface IDiffEditorState {
41 value: string[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…