Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
6 lines
246 B
TypeScript
6 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[];
|
|
}
|