Files

7 lines
246 B
TypeScript

export declare abstract class Node {
/** Return the unformatted code for this node. */
abstract toCodeString(): string;
/** Any potentially string/SymbolSpec/Code nested nodes within us. */
abstract get childNodes(): unknown[];
}