Evercatch - v0.5.0
    Preparing search index...

    Type Alias Result<T, E, S>

    Result: ResultOk<T> | ResultErr<E, S>

    Represents the outcome of an operation that can either succeed or fail. It is a union of ResultOk and ResultErr.

    Type Parameters

    • T

      The type of the success value.

    • E extends string = string

      A string literal type for the error label.

    • S = unknown

      The type of the source error.