interface SwitchCase {
    consequent: Statement[];
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    test?: null | Expression;
    trailingComments?: Comment[];
    type: "SwitchCase";
}

Hierarchy (View Summary)

Properties

consequent: Statement[]
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
test?: null | Expression
trailingComments?: Comment[]
type: "SwitchCase"