@jiminp/tooltool
    Preparing search index...

    Type Alias AsyncThrowEvent<T>

    A throw event.

    type AsyncThrowEvent<T = unknown> = {
        type: "throw";
        value: T;
    }

    Type Parameters

    • T = unknown

      Error type (default: unknown).

    Index

    Properties

    Properties

    type: "throw"
    value: T