@tempots/std

Failure type

Represents a failure result.

Signature:

export type Failure = {
    readonly type: 'Failure';
    readonly error: E;
};