diff options
Diffstat (limited to 'utils/index.ts')
| -rw-r--r-- | utils/index.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/index.ts b/utils/index.ts new file mode 100644 index 0000000..4449e3e --- /dev/null +++ b/utils/index.ts @@ -0,0 +1,21 @@ +export { + err, + isErr, + isOk, + mapErr, + mapResult, + ok, + unwrap, + unwrapOr, + type Err, + type Ok, + type Result +} from 'utils/result' + +export { assert, assertDefined, assertNever } from 'utils/assert' + +export { deepEqual } from 'utils/equal' + +export type { Brand, DeepReadonly, ElementOf, JsonValue, NonEmptyArray } from 'utils/types' + +export { log } from 'utils/log' |
