tryError Documentation

Type Alias: TryFailure\<R\>
Type

```ts type TryFailure<R> = R extends TryError ? R : never; ``` Defined in: [types.ts:134](https://github.com/oconnorjohnson/try-error/blob/e3ae0308069a4fba073f4543d527ad76373db795/src/types.ts#L134) Extract the error type from a TryResult

tryError API Documentation v0.0.1-alpha.1


tryError API Documentation / TryFailure

Type Alias: TryFailure<R>

type TryFailure<R> = R extends TryError ? R : never;

Defined in: types.ts:134

Extract the error type from a TryResult

Type Parameters

R

R