UNPKG

parseit.js

Version:

Customizable parsing library for converting a list of tokens into an AST tree

9 lines (8 loc) 189 B
export default class ASTNode { isNode: boolean; static isNodeConstructor: boolean; toString(): string; } export interface ASTNodeConstructor { isNodeConstructor: boolean; }