| 1 | import { Ace } from "ace-builds"; |
| 2 | |
| 3 | export interface ICommandManager { |
| 4 | byName: any; |
| 5 | commands: any; |
| 6 | platform: string; |
| 7 | addCommands(commands: any[]): void; |
| 8 | addCommand(command: any): void; |
| 9 | exec(name: string, editor: any, args: any): void; |
| 10 | bindKey?(bindKey: any, command: any): void; |
| 11 | } |
| 12 | export interface IEditorProps { |
| 13 | [index: string]: any; |
| 14 | $blockScrolling?: number | boolean; |
no outgoing calls
no test coverage detected
searching dependent graphs…