tryError Documentation

Type Alias: TrySuccess\<T\>
Type

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

tryError API Documentation v0.0.1-alpha.1


tryError API Documentation / TrySuccess

Type Alias: TrySuccess<T>

type TrySuccess<T> = T extends TryError ? never : T;

Defined in: types.ts:129

Extract the success type from a TryResult

Type Parameters

T

T