interface SimpleLiteral {
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    raw?: string;
    trailingComments?: Comment[];
    type: "Literal";
    value: null | string | number | boolean;
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
raw?: string
trailingComments?: Comment[]
type: "Literal"
value: null | string | number | boolean