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

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,6 +28,7 @@ export interface IRefs {
28
28
  };
29
29
  setPosition: (column: number, lineNumber: number) => void;
30
30
  setModelMarkers: (markers: editor.IMarkerData[]) => void;
31
+ focus: () => void;
31
32
  }
32
33
  declare const TradingEditorComponent: import("react").ForwardRefExoticComponent<IProps & import("react").RefAttributes<IRefs>>;
33
34
  export default TradingEditorComponent;
@@ -16,6 +16,7 @@ export default class InitEditor {
16
16
  removeDiffDecorations(): void;
17
17
  setValue(val: string): void;
18
18
  setPosition(position: IPosition): void;
19
+ focus(): void;
19
20
  setOriginalScript(val: string): void;
20
21
  getEditorLayout(): {
21
22
  contentHeight: number;