diff options
Diffstat (limited to 'source/library/index.ts')
| -rw-r--r-- | source/library/index.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/library/index.ts b/source/library/index.ts index 5aecff1..2bec6e4 100644 --- a/source/library/index.ts +++ b/source/library/index.ts @@ -24,5 +24,12 @@ export type { export type { HistoryEntry, HistoryInput } from "./state/history.svelte.ts"; export type { OperationInfo } from "./graphql/operations.ts"; +export type { SseFetcherOptions } from "./fetcher/sse.ts"; export type { Storage } from "./state/storage.ts"; -export type { Tab, TabSeed } from "./state/session.svelte.ts"; +export type { + RunOptions, + SubscriptionMode, + Tab, + TabSeed +} from "./state/session.svelte.ts"; +export type { WsFetcherOptions } from "./fetcher/websocket.ts"; |