@guihz/trading-vue-editor-tes 0.0.47 → 0.0.49

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import BuildInArray, { PseudoArray } from "./array";
2
2
  import BuildInMath from "./math";
3
3
  import BuildInTa from "./ta";
4
- import BuildInInput, { VInputType } from "./input";
4
+ import BuildInInput from "./input";
5
5
  import BuildInColor from "./color";
6
6
  import BuildInMatrix from "./matrix";
7
7
  import BuildInTimeframe from "./timeframe";
@@ -19,5 +19,5 @@ import { Log } from './log';
19
19
  import { Runtime } from './runtime';
20
20
  export { TccErrorListener } from './errorListener';
21
21
  export type { IColorArgs } from './color';
22
- export { BuildInArray, BuildInMath, BuildInTa, BuildInInput, BuildInColor, BuildInMatrix, ChartPoint, Point, BuildInTimeframe, BuildInStr, BuildInMap, PseudoArray, VInputType, BuildInLabel, BuildInPolyline, BuildInLine, Label, Polyline, Line, BuildInLinefill, Linefill, BuildInBox, Box, BuildInTable, Table, Log, Runtime, Strategy };
22
+ export { BuildInArray, BuildInMath, BuildInTa, BuildInInput, BuildInColor, BuildInMatrix, ChartPoint, Point, BuildInTimeframe, BuildInStr, BuildInMap, PseudoArray, BuildInLabel, BuildInPolyline, BuildInLine, Label, Polyline, Line, BuildInLinefill, Linefill, BuildInBox, Box, BuildInTable, Table, Log, Runtime, Strategy };
23
23
  export type { PartialLabelArgs, IPolyline, ILineArgs, TLinefill, IBoxArgs, ITableArgs, IOrder, IStrategy };
@@ -1,21 +1,7 @@
1
1
  import { BuiltInVariables } from "../buildInVariables";
2
- import { VPlotDisplay } from "../enum";
2
+ import { VInputType, VPlotDisplay } from "../enum";
3
3
  import { TccErrorListener } from "./errorListener";
4
4
  type TSimpleType = string | number | boolean;
5
- export declare enum VInputType {
6
- INT = "int",
7
- BOOL = "bool",
8
- TIME = "time",
9
- COLOR = "color",
10
- FLOAT = "float",
11
- PRICE = "price",
12
- SOURCE = "source",
13
- STRING = "string",
14
- SYMBOL = "symbol",
15
- SESSION = "session",
16
- TEXT_AREA = "text_area",
17
- TIMEFRAME = "timeframe"
18
- }
19
5
  interface IInputArgs {
20
6
  id: string;
21
7
  defval: TSimpleType;
@@ -246,3 +246,17 @@ export declare enum VPivotType {
246
246
  dm = "DM",
247
247
  camarilla = "Camarilla"
248
248
  }
249
+ export declare enum VInputType {
250
+ INT = "int",
251
+ BOOL = "bool",
252
+ TIME = "time",
253
+ COLOR = "color",
254
+ FLOAT = "float",
255
+ PRICE = "price",
256
+ SOURCE = "source",
257
+ STRING = "string",
258
+ SYMBOL = "symbol",
259
+ SESSION = "session",
260
+ TEXT_AREA = "text_area",
261
+ TIMEFRAME = "timeframe"
262
+ }
@@ -6,3 +6,4 @@ export { parseTcc, scriptsRun, removeScript } from '../components/editor/utils/p
6
6
  export type { IError, IPosition } from '../components/editor/parseScript/type';
7
7
  export { VMarkerSeverity } from '../components/editor/parseScript/type';
8
8
  export { default as ReferenceManual } from '../components/referenceManual';
9
+ export { VAdjustment, VAlert, VBarmergeGaps, VCommission, VDirection, VEarnings, VExtend, VFormatType, VHlineStyle, VInputType, VLabelStyle, VLineStyle, VLocation, VOca, VPlotDisplay, VPlotStyle, VRuleType, VScale, VSession, VShape, VSortOrder, VSize, VStrategy, VText, VType, VXloc, VYloc, VPivotType, VPosition } from '../components/editor/parseScript/enum';