mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 20:20:07 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
7 lines
246 B
TypeScript
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[];
|
|
}
|