svelte-ast-print - v1.0.0
    Preparing search index...

    An on: directive

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

    Hierarchy

    • BaseNode
      • OnDirective
    Index

    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"