@guihz/trading-vue-editor-tes 0.0.139 → 0.0.140

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ export default class ChartPoint {
10
10
  constructor(variables: BuiltInVariables);
11
11
  new({ price, time, index }: IChartPointArgs): Point;
12
12
  now({ price }: IChartPointArgs): Point;
13
- copy({ id }: IChartPointArgs): Point;
13
+ copy({ id }: IChartPointArgs): Point | undefined;
14
14
  from_index({ price, index }: IChartPointArgs): Point;
15
15
  from_time({ price, time }: IChartPointArgs): Point;
16
16
  }
@@ -76,6 +76,14 @@ export declare const ERRORS_TIPS: {
76
76
  conditionalErr: string;
77
77
  fortoErr: string;
78
78
  indicatorUseStrategyFuncErr: string;
79
+ arrEmptyErr: string;
80
+ arrLengthDiffErr: string;
81
+ arrTypeErr: string;
82
+ inputOptErr: string;
83
+ mathRandomErr: string;
84
+ matrixRehapeErr: string;
85
+ strategyExitErr: string;
86
+ arrLenErr: string;
79
87
  };
80
88
  export declare const WARNING_TIPS: {
81
89
  repeatVar: string;