diff --git a/.changeset/dull-hairs-confess.md b/.changeset/dull-hairs-confess.md new file mode 100644 index 000000000..af0b61c22 --- /dev/null +++ b/.changeset/dull-hairs-confess.md @@ -0,0 +1,5 @@ +--- +'houdini-svelte': patch +--- + +Include types in houdini-svelte/runtime import (resolves QueryStoreFetchParams import failures) diff --git a/packages/houdini-svelte/src/runtime/index.ts b/packages/houdini-svelte/src/runtime/index.ts index ca46e104c..f598be3c5 100644 --- a/packages/houdini-svelte/src/runtime/index.ts +++ b/packages/houdini-svelte/src/runtime/index.ts @@ -4,6 +4,7 @@ export * from './adapter' export * from './stores' export * from './fragments' export * from './session' +export * from './types' type LoadResult = Promise<{ [key: string]: QueryStore }> type LoadAllInput = LoadResult | Record