blob: 931b638096fae2c1dc25bad5505396f296a27d21 (
plain)
1
2
3
4
5
|
export type { Err, Ok, Result } from './types'
export { err, ok } from './constructors'
export { isErr, isOk } from './predicates'
export { mapErr, mapResult } from './map'
export { unwrap, unwrapOr } from './unwrap'
|