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

    A bind: directive

    interface BindDirective {
        end?: number;
        expression: Identifier | MemberExpression | SequenceExpression;
        name: string;
        start?: number;
        type: "BindDirective";
    }

    Hierarchy

    • BaseNode
      • BindDirective
    Index

    Properties

    end?: number

    The y in bind:x={y}

    name: string

    The 'x' in bind:x

    start?: number
    type: "BindDirective"