UNPKG

@syntest/cfg-core

Version:
20 lines 357 B
/** * Interface for a Node. * * @author Dimitri Stallenberg */ export interface Node { type: NodeType; id: string; lines: number[]; statements: string[]; description?: string; } export declare enum NodeType { Intermediary = 0, Branch = 1, Placeholder = 2, Root = 3, Normal = 4 } //# sourceMappingURL=Node.d.ts.map