UNPKG

@utx/result

Version:

A typescript implementation of Rust's Result and Option objects.

11 lines (9 loc) 250 B
/** * @utx/result v3.4.0 * Author: Gabe M <hey@gabe.mx> * LICENSE: ISC * * https://github.com/fromgmworks/typescript-result */ export { Err, ErrImpl, Ok, OkImpl, Result } from './result.mjs'; export { None, Option, Some } from './option.mjs';