feat(client): 🏷️ Export Output and Token types

This commit is contained in:
Jesse Wierzbinski 2024-06-07 12:00:38 -10:00
parent 206aa7b2a9
commit a50c80c866
No known key found for this signature in database

View file

@ -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 };