An on: directive

interface OnDirective {
    end: number;
    expression: null | Expression;
    modifiers: string[];
    name: string;
    start: number;
    type: "OnDirective";
}

Hierarchy (View Summary)

Properties

end: number
expression: null | Expression

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

modifiers: string[]
name: string

The 'x' in on:x

start: number
type: "OnDirective"