interface File {
    comments?: null | (CommentBlock | CommentLine)[];
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    program: Program;
    range?: [number, number];
    start?: null | number;
    tokens?: null | any[];
    trailingComments?: null | Comment[];
    type: "File";
}

Hierarchy (view full)

Properties

comments?: null | (CommentBlock | CommentLine)[]
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
program: Program
range?: [number, number]
start?: null | number
tokens?: null | any[]
trailingComments?: null | Comment[]
type: "File"