@guihz/trading-vue-editor-tes 0.0.41 → 0.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;
|