@guihz/trading-vue-editor-tes 0.0.41 → 0.0.42
Sign up to get free protection for your applications and to get access to all the features.
@@ -9,7 +9,7 @@ export declare class DiffDecorations {
|
|
9
9
|
private _diffPopupWidget?;
|
10
10
|
private _didChangeListener?;
|
11
11
|
private _onMouseDownListener?;
|
12
|
-
constructor(editor: editor.IStandaloneCodeEditor, monaco: Monaco,
|
12
|
+
constructor(editor: editor.IStandaloneCodeEditor, monaco: Monaco, originalScript?: string);
|
13
13
|
private _init;
|
14
14
|
update(val: string): void;
|
15
15
|
dispose(): void;
|
@@ -5,6 +5,7 @@ export default class InitEditor {
|
|
5
5
|
private _monaco;
|
6
6
|
private _decorations?;
|
7
7
|
private _changPositionListener?;
|
8
|
+
private _originalScript?;
|
8
9
|
private _onActionTrigger?;
|
9
10
|
constructor(editor: editor.IStandaloneCodeEditor, monaco: Monaco, onActionTrigger?: (actionId: string) => void);
|
10
11
|
updateActionTrigger(onActionTrigger?: (actionId: string) => void): void;
|