mevento 2.0.4 → 2.0.6
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.
- package/esm2020/lib/mevento.mjs +10 -10
- package/fesm2015/mevento.mjs +9 -9
- package/fesm2015/mevento.mjs.map +1 -1
- package/fesm2020/mevento.mjs +9 -9
- package/fesm2020/mevento.mjs.map +1 -1
- package/lib/mevento.d.ts +1 -2
- package/package.json +1 -1
package/lib/mevento.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Type } from "@angular/core";
|
|
2
1
|
export declare class TokenType {
|
|
3
2
|
static id: number;
|
|
4
3
|
static comma: number;
|
|
@@ -215,7 +214,7 @@ declare abstract class ANodeVisitor {
|
|
|
215
214
|
protected _nodesVisitors: {
|
|
216
215
|
[k: string]: Func;
|
|
217
216
|
};
|
|
218
|
-
protected registerVisitor(type:
|
|
217
|
+
protected registerVisitor(type: any, visitor: Func): void;
|
|
219
218
|
abstract visit(node: AST): any;
|
|
220
219
|
}
|
|
221
220
|
export declare abstract class NodeVisitor extends ANodeVisitor {
|