interface Directive {
    directive: string;
    expression: Literal;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "ExpressionStatement";
}

Hierarchy (View Summary)

Properties

directive: string
expression: Literal
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "ExpressionStatement"