@guihz/trading-vue-editor-tes 0.0.71 → 0.0.73

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,6 @@
1
+ import { IDocValue } from "../type";
2
+ interface IContents {
3
+ [key: string]: IDocValue[];
4
+ }
5
+ export declare const NEW_CONTENTS: IContents;
6
+ export {};
@@ -41,5 +41,7 @@ export declare enum DocTitle {
41
41
  export declare enum Actions {
42
42
  Save = "save",
43
43
  Find = "find",
44
- TriggerConsole = "trigger.console"
44
+ TriggerConsole = "trigger.console",
45
+ RunScript = "runScript",
46
+ Open = "open"
45
47
  }
@@ -21,7 +21,7 @@ export default class InitEditor {
21
21
  contentHeight: number;
22
22
  lineCount: number | undefined;
23
23
  };
24
- setEditorLayout(height: number): void;
24
+ setEditorLayout(height: number, width?: number): void;
25
25
  private _init;
26
26
  private _setCursorPosition;
27
27
  private _register;