@jenova-marie/ts-rust-result - v2.2.12
    Preparing search index...

    Type Alias Err<E>

    Represents an error result with an error object.

    type Err<E = Error> = {
        _isr: true;
        error: E;
        ok: false;
    }

    Type Parameters

    • E = Error

      The type of the error (defaults to Error)

    Index

    Properties

    Properties

    _isr: true
    error: E
    ok: false