A use: directive

interface UseDirective {
    end: number;
    expression: null | Expression;
    name: string;
    start: number;
    type: "UseDirective";
}

Hierarchy (View Summary)

Properties

end: number
expression: null | Expression

The 'y' in use:x={y}

name: string

The 'x' in use:x

start: number
type: "UseDirective"