@douglasneuroinformatics/libjs
    Preparing search index...

    Type Alias ExceptionStatic<TParams, TOptions>

    type ExceptionStatic<
        TParams extends ExceptionParams,
        TOptions extends ExceptionOptions,
    > = {
        Instance: BaseException<TParams, TOptions>;
        asAsyncErr(
            ...args: ExceptionConstructorArgs<TParams, TOptions>,
        ): ResultAsync<never, BaseException<TParams, TOptions>>;
        asErr(
            ...args: ExceptionConstructorArgs<TParams, TOptions>,
        ): Result<never, BaseException<TParams, TOptions>>;
    }

    Type Parameters

    Index

    Properties

    Methods

    Properties

    inference-only property that will be undefined at runtime

    Methods