@guihz/trading-vue-editor-tes 0.0.72 → 0.0.74

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.
@@ -17,9 +17,9 @@ export declare class Log {
17
17
  constructor(variables: BuiltInVariables);
18
18
  get logs(): ILog[];
19
19
  clearLogs(): void;
20
- info(args: ILogArgs, replaces: (string | number)[]): void;
21
- error(args: ILogArgs, replaces: (string | number)[]): void;
22
- warning(args: ILogArgs, replaces: (string | number)[]): void;
20
+ info(args: ILogArgs, replaces: (string | number)[], posStr: string): void;
21
+ error(args: ILogArgs, replaces: (string | number)[], posStr: string): void;
22
+ warning(args: ILogArgs, replaces: (string | number)[], posStr: string): void;
23
23
  private _addLog;
24
24
  }
25
25
  export {};
@@ -56,6 +56,8 @@ export declare const ERRORS_TIPS: {
56
56
  importMultipleErr: string;
57
57
  importNotExitErr: string;
58
58
  importNameRepeatErr: string;
59
+ exportFuncHasInputErr: string;
60
+ libraryTitleIsKeywordErr: string;
59
61
  };
60
62
  export declare const WARNING_TIPS: {
61
63
  repeatVar: string;
@@ -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;