@guihz/trading-vue-editor-tes 0.0.25 → 0.0.26

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guihz/trading-vue-editor-tes",
3
- "version": "0.0.025",
3
+ "version": "0.0.026",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib"
@@ -1,22 +0,0 @@
1
- /// <reference path="../../../../src/vite-env.d.ts" />
2
- import { ErrorListener } from 'antlr4';
3
- export default function parseTcc(program: string): {
4
- errors: import("../parseScript/type").IError[];
5
- functions: {
6
- [k: string]: import("../type").IDocValue[];
7
- };
8
- variables: {
9
- [k: string]: import("../type").IDocValue[];
10
- };
11
- types: {
12
- [k: string]: import("../type").IDocValue[];
13
- };
14
- methods: {
15
- [k: string]: import("../type").IDocValue[];
16
- };
17
- overloadsFuncs: import("../type").IKeyValue[];
18
- };
19
- export declare class ExprErrorListener extends ErrorListener {
20
- errors: any[];
21
- syntaxError(_: any, __: any, line: number, column: number, msg: string): void;
22
- }