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

    A transition:, in: or out: directive

    interface TransitionDirective {
        end?: number;
        expression: null | Expression;
        intro: boolean;
        modifiers: ("local" | "global")[];
        name: string;
        outro: boolean;
        start?: number;
        type: "TransitionDirective";
    }

    Hierarchy

    • BaseNode
      • TransitionDirective
    Index

    Properties

    end?: number
    expression: null | Expression

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

    intro: boolean

    True if this is a transition: or in: directive

    modifiers: ("local" | "global")[]
    name: string

    The 'x' in transition:x

    outro: boolean

    True if this is a transition: or out: directive

    start?: number
    type: "TransitionDirective"