UNPKG

426 BTypeScriptView Raw
1import '../../';
2
3declare module '../../' {
4 interface EditorConfiguration {
5 /**
6 * if true, the editor will make the next line continue a comment when
7 * pressing the Enter key. If set to a string, it will continue comments
8 * using a custom shortcut.
9 */
10 continueComments?: boolean | string | { key: string, continueLineComment?: boolean | undefined } | undefined;
11 }
12}