UNPKG

@piyawasin/attempt

Version:

Inspired by Golang error handling, this package will help you code defensively by always handling the errors.

2 lines (1 loc) 75 B
export declare type AttemptResult<T, E = unknown> = [T, null] | [null, E];