From a50c80c866493838b5965619318f0e34fcac0b1c Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Fri, 7 Jun 2024 12:00:38 -1000 Subject: [PATCH] feat(client): :label: Export Output and Token types --- client/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/index.ts b/client/index.ts index 372de5e..6ed934d 100644 --- a/client/index.ts +++ b/client/index.ts @@ -1,4 +1,5 @@ -import { ResponseError } from "./lysand/base"; +import { type Output, ResponseError } from "./lysand/base"; import { LysandClient } from "./lysand/lysand"; +import type { Token } from "./types/token"; -export { LysandClient, ResponseError }; +export { LysandClient, ResponseError, type Output, type Token };