diff options
Diffstat (limited to 'source/library/index.ts')
| -rw-r--r-- | source/library/index.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/library/index.ts b/source/library/index.ts index d68955b..5f18a87 100644 --- a/source/library/index.ts +++ b/source/library/index.ts @@ -3,6 +3,8 @@ /*** EXPORT ------------------------------------------- ***/ +export type { Extension } from "@codemirror/state"; + export { createApqFetcher } from "./fetcher/apq.ts"; export { createHttpFetcher } from "./fetcher/http.ts"; export { createLocalStorage, createMemoryStorage } from "./state/storage.ts"; @@ -17,7 +19,6 @@ export { SessionStore } from "./state/session.svelte.ts"; export { validateSessionExport } from "./state/session-io.ts"; export type { ApqOptions } from "./fetcher/apq.ts"; -export type { Extension } from "@codemirror/state"; export type { Fetcher, @@ -27,15 +28,18 @@ export type { } from "./fetcher/types.ts"; export type { HistoryEntry, HistoryInput } from "./state/history.svelte.ts"; + export type { ImportResult, SessionExport, TabExport } from "./state/session-io.ts"; + export type { OperationInfo } from "./graphql/operations.ts"; export type { ShortcutAction } from "./state/keyboard.ts"; export type { SseFetcherOptions } from "./fetcher/sse.ts"; export type { Storage } from "./state/storage.ts"; + export type { RunOptions, SubscriptionMode, @@ -43,4 +47,5 @@ export type { TabSeed, TabTiming } from "./state/session.svelte.ts"; + export type { WsFetcherOptions } from "./fetcher/websocket.ts"; |