svelte-ast-print - v0.6.0
    Preparing search index...

    An {#await ...} block

    interface AwaitBlock {
        catch: null | Fragment;
        end: number;
        error: null | Pattern;
        expression: Expression;
        pending: null | Fragment;
        start: number;
        then: null | Fragment;
        type: "AwaitBlock";
        value: null | Pattern;
    }

    Hierarchy (View Summary)

    Index

    Properties

    catch: null | Fragment
    end: number
    error: null | Pattern

    The rejection reason inside the catch block

    expression: Expression
    pending: null | Fragment
    start: number
    then: null | Fragment
    type: "AwaitBlock"
    value: null | Pattern

    The resolved value inside the then block