interface Program {
    body: (ModuleDeclaration | Statement | Directive)[];
    comments?: Comment[];
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    sourceType: "module" | "script";
    trailingComments?: Comment[];
    type: "Program";
}

Hierarchy (View Summary)

Properties

comments?: Comment[]
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
sourceType: "module" | "script"
trailingComments?: Comment[]
type: "Program"