@binarymuse/ts-stdlib
    Preparing search index...

    Type Alias Result<T, E>

    Result: (Ok<T, E> | Err<T, E>) & ResultMethods<T, E>

    A Result<T, E> is a value that represents either a successful computation (Ok<T>) or an error (Err<E>).

    Type Parameters

    • T

      The type of the success value

    • E

      The type of the error value

    ResultMethods for more information on the methods available on Result.