svelte-ast-print - v0.6.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 (View Summary)

    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"