@guihz/trading-vue-editor-tes 0.0.145 → 0.0.147

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,7 @@
1
1
  import { editor, languages } from 'monaco-editor';
2
2
  export declare class Color {
3
3
  private _colors;
4
+ private _count;
4
5
  constructor();
5
6
  getDocumentColors(list: editor.FindMatch[]): languages.IColorInformation[];
6
7
  private get _defultColorsRegStr();
@@ -8,6 +8,7 @@ export default class InitEditor {
8
8
  private _originalScript?;
9
9
  private _onActionTrigger?;
10
10
  private _onLinkOpen?;
11
+ private _registerList;
11
12
  constructor(editor: editor.IStandaloneCodeEditor, monaco: Monaco, onActionTrigger?: (actionId: string) => void);
12
13
  addLinkOpenFunc(onLinkOpen: (source: string, index?: number) => void): void;
13
14
  updateActionTrigger(onActionTrigger?: (actionId: string) => void): void;
@@ -33,4 +34,5 @@ export default class InitEditor {
33
34
  openFind(): void;
34
35
  gotoLine(): void;
35
36
  onChangeCursorPosition(_callback?: (postion: IPosition) => void): void;
37
+ dispose(): void;
36
38
  }