From d2f799aedd5c58ecb9a9291d58d2f7ef733d51ae Mon Sep 17 00:00:00 2001 From: Braden Wong <13159333+braden-w@users.noreply.github.com> Date: Tue, 24 Dec 2024 13:12:52 -0800 Subject: [PATCH] chore: add more exports --- src/index.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d055c04..326f3b8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,11 @@ export { createMutation } from "./mutations"; -export { Err, Ok, Result, tryAsync, trySync } from "./result"; +export { + Err, + Ok, + InferErr, + InferOk, + Result, + tryAsync, + trySync, +} from "./result"; export { ServiceFn, createServiceErrorFns } from "./services";