houdini-react 2.0.0-next.4 → 2.0.0-next.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/bin/houdini-react +173 -0
  2. package/package.json +63 -39
  3. package/postInstall.js +360 -0
  4. package/runtime/Link.tsx +81 -0
  5. package/runtime/client.ts +5 -0
  6. package/runtime/clientPlugin.ts +17 -0
  7. package/runtime/componentFields.ts +79 -0
  8. package/runtime/hooks/index.ts +9 -0
  9. package/runtime/hooks/recycleNodesInto.ts +60 -0
  10. package/runtime/hooks/useDeepCompareEffect.ts +93 -0
  11. package/runtime/hooks/useDocumentHandle.ts +238 -0
  12. package/runtime/hooks/useDocumentStore.ts +112 -0
  13. package/runtime/hooks/useDocumentSubscription.ts +65 -0
  14. package/runtime/hooks/useFragment.ts +101 -0
  15. package/runtime/hooks/useFragmentHandle.ts +191 -0
  16. package/runtime/hooks/useIsMounted.ts +14 -0
  17. package/runtime/hooks/useMutation.ts +70 -0
  18. package/runtime/hooks/useQuery.ts +12 -0
  19. package/runtime/hooks/useQueryHandle.ts +194 -0
  20. package/runtime/hooks/useSubscription.ts +12 -0
  21. package/runtime/hooks/useSubscriptionHandle.ts +38 -0
  22. package/runtime/hydration.tsx +155 -0
  23. package/runtime/index.tsx +66 -0
  24. package/runtime/manifest.ts +6 -0
  25. package/runtime/package.json +1 -0
  26. package/runtime/resolve-href.ts +14 -0
  27. package/runtime/routing/Router.tsx +959 -0
  28. package/runtime/routing/cache.ts +57 -0
  29. package/runtime/routing/errors.tsx +145 -0
  30. package/runtime/routing/index.ts +17 -0
  31. package/runtime/tsconfig.json +39 -0
  32. package/server/index.d.ts +1 -0
  33. package/server/index.js +4 -0
  34. package/server/react-streaming.d.js +0 -0
  35. package/vite/index.d.ts +3 -0
  36. package/vite/index.js +384 -0
  37. package/vite/transform.d.ts +11 -0
  38. package/vite/transform.js +90 -0
  39. package/README.md +0 -36
  40. package/build/plugin/codegen/entries/documentWrappers.d.ts +0 -6
  41. package/build/plugin/codegen/entries/fallbacks.d.ts +0 -5
  42. package/build/plugin/codegen/entries/index.d.ts +0 -16
  43. package/build/plugin/codegen/entries/pages.d.ts +0 -2
  44. package/build/plugin/codegen/index.d.ts +0 -17
  45. package/build/plugin/codegen/manifest.d.ts +0 -5
  46. package/build/plugin/codegen/render.d.ts +0 -7
  47. package/build/plugin/codegen/router.d.ts +0 -7
  48. package/build/plugin/codegen/typeRoot.d.ts +0 -5
  49. package/build/plugin/config.d.ts +0 -4
  50. package/build/plugin/dedent.d.ts +0 -1
  51. package/build/plugin/extract.d.ts +0 -6
  52. package/build/plugin/index.d.ts +0 -5
  53. package/build/plugin/state.d.ts +0 -3
  54. package/build/plugin/transform.d.ts +0 -6
  55. package/build/plugin/vite.d.ts +0 -27
  56. package/build/plugin-cjs/index.js +0 -90119
  57. package/build/plugin-cjs/package.json +0 -1
  58. package/build/plugin-esm/index.js +0 -90115
  59. package/build/runtime/client.d.ts +0 -3
  60. package/build/runtime/clientPlugin.d.ts +0 -3
  61. package/build/runtime/componentFields.d.ts +0 -9
  62. package/build/runtime/hooks/index.d.ts +0 -8
  63. package/build/runtime/hooks/useDeepCompareEffect.d.ts +0 -35
  64. package/build/runtime/hooks/useDocumentHandle.d.ts +0 -36
  65. package/build/runtime/hooks/useDocumentStore.d.ts +0 -11
  66. package/build/runtime/hooks/useDocumentSubscription.d.ts +0 -11
  67. package/build/runtime/hooks/useFragment.d.ts +0 -16
  68. package/build/runtime/hooks/useFragmentHandle.d.ts +0 -8
  69. package/build/runtime/hooks/useIsMounted.d.ts +0 -3
  70. package/build/runtime/hooks/useMutation.d.ts +0 -14
  71. package/build/runtime/hooks/useQuery.d.ts +0 -5
  72. package/build/runtime/hooks/useQueryHandle.d.ts +0 -10
  73. package/build/runtime/hooks/useSubscription.d.ts +0 -4
  74. package/build/runtime/hooks/useSubscriptionHandle.d.ts +0 -25
  75. package/build/runtime/index.d.ts +0 -14
  76. package/build/runtime/manifest.d.ts +0 -3
  77. package/build/runtime/routing/Router.d.ts +0 -62
  78. package/build/runtime/routing/cache.d.ts +0 -7
  79. package/build/runtime/routing/hooks.d.ts +0 -40
  80. package/build/runtime/routing/index.d.ts +0 -3
  81. package/build/runtime-cjs/client.d.ts +0 -3
  82. package/build/runtime-cjs/client.js +0 -25
  83. package/build/runtime-cjs/clientPlugin.d.ts +0 -3
  84. package/build/runtime-cjs/clientPlugin.js +0 -37
  85. package/build/runtime-cjs/componentFields.d.ts +0 -9
  86. package/build/runtime-cjs/componentFields.js +0 -83
  87. package/build/runtime-cjs/hooks/index.d.ts +0 -8
  88. package/build/runtime-cjs/hooks/index.js +0 -45
  89. package/build/runtime-cjs/hooks/useDeepCompareEffect.d.ts +0 -35
  90. package/build/runtime-cjs/hooks/useDeepCompareEffect.js +0 -76
  91. package/build/runtime-cjs/hooks/useDocumentHandle.d.ts +0 -36
  92. package/build/runtime-cjs/hooks/useDocumentHandle.js +0 -177
  93. package/build/runtime-cjs/hooks/useDocumentStore.d.ts +0 -11
  94. package/build/runtime-cjs/hooks/useDocumentStore.js +0 -76
  95. package/build/runtime-cjs/hooks/useDocumentSubscription.d.ts +0 -11
  96. package/build/runtime-cjs/hooks/useDocumentSubscription.js +0 -76
  97. package/build/runtime-cjs/hooks/useFragment.d.ts +0 -16
  98. package/build/runtime-cjs/hooks/useFragment.js +0 -102
  99. package/build/runtime-cjs/hooks/useFragmentHandle.d.ts +0 -8
  100. package/build/runtime-cjs/hooks/useFragmentHandle.js +0 -47
  101. package/build/runtime-cjs/hooks/useIsMounted.d.ts +0 -3
  102. package/build/runtime-cjs/hooks/useIsMounted.js +0 -38
  103. package/build/runtime-cjs/hooks/useMutation.d.ts +0 -14
  104. package/build/runtime-cjs/hooks/useMutation.js +0 -67
  105. package/build/runtime-cjs/hooks/useQuery.d.ts +0 -5
  106. package/build/runtime-cjs/hooks/useQuery.js +0 -32
  107. package/build/runtime-cjs/hooks/useQueryHandle.d.ts +0 -10
  108. package/build/runtime-cjs/hooks/useQueryHandle.js +0 -131
  109. package/build/runtime-cjs/hooks/useSubscription.d.ts +0 -4
  110. package/build/runtime-cjs/hooks/useSubscription.js +0 -32
  111. package/build/runtime-cjs/hooks/useSubscriptionHandle.d.ts +0 -25
  112. package/build/runtime-cjs/hooks/useSubscriptionHandle.js +0 -42
  113. package/build/runtime-cjs/index.d.ts +0 -14
  114. package/build/runtime-cjs/index.js +0 -88
  115. package/build/runtime-cjs/manifest.d.ts +0 -3
  116. package/build/runtime-cjs/manifest.js +0 -25
  117. package/build/runtime-cjs/package.json +0 -1
  118. package/build/runtime-cjs/routing/Router.d.ts +0 -62
  119. package/build/runtime-cjs/routing/Router.js +0 -540
  120. package/build/runtime-cjs/routing/cache.d.ts +0 -7
  121. package/build/runtime-cjs/routing/cache.js +0 -61
  122. package/build/runtime-cjs/routing/hooks.d.ts +0 -40
  123. package/build/runtime-cjs/routing/hooks.js +0 -93
  124. package/build/runtime-cjs/routing/index.d.ts +0 -3
  125. package/build/runtime-cjs/routing/index.js +0 -33
  126. package/build/runtime-esm/client.d.ts +0 -3
  127. package/build/runtime-esm/client.js +0 -5
  128. package/build/runtime-esm/clientPlugin.d.ts +0 -3
  129. package/build/runtime-esm/clientPlugin.js +0 -17
  130. package/build/runtime-esm/componentFields.d.ts +0 -9
  131. package/build/runtime-esm/componentFields.js +0 -59
  132. package/build/runtime-esm/hooks/index.d.ts +0 -8
  133. package/build/runtime-esm/hooks/index.js +0 -15
  134. package/build/runtime-esm/hooks/useDeepCompareEffect.d.ts +0 -35
  135. package/build/runtime-esm/hooks/useDeepCompareEffect.js +0 -41
  136. package/build/runtime-esm/hooks/useDocumentHandle.d.ts +0 -36
  137. package/build/runtime-esm/hooks/useDocumentHandle.js +0 -143
  138. package/build/runtime-esm/hooks/useDocumentStore.d.ts +0 -11
  139. package/build/runtime-esm/hooks/useDocumentStore.js +0 -42
  140. package/build/runtime-esm/hooks/useDocumentSubscription.d.ts +0 -11
  141. package/build/runtime-esm/hooks/useDocumentSubscription.js +0 -42
  142. package/build/runtime-esm/hooks/useFragment.d.ts +0 -16
  143. package/build/runtime-esm/hooks/useFragment.js +0 -67
  144. package/build/runtime-esm/hooks/useFragmentHandle.d.ts +0 -8
  145. package/build/runtime-esm/hooks/useFragmentHandle.js +0 -23
  146. package/build/runtime-esm/hooks/useIsMounted.d.ts +0 -3
  147. package/build/runtime-esm/hooks/useIsMounted.js +0 -14
  148. package/build/runtime-esm/hooks/useMutation.d.ts +0 -14
  149. package/build/runtime-esm/hooks/useMutation.js +0 -42
  150. package/build/runtime-esm/hooks/useQuery.d.ts +0 -5
  151. package/build/runtime-esm/hooks/useQuery.js +0 -8
  152. package/build/runtime-esm/hooks/useQueryHandle.d.ts +0 -10
  153. package/build/runtime-esm/hooks/useQueryHandle.js +0 -97
  154. package/build/runtime-esm/hooks/useSubscription.d.ts +0 -4
  155. package/build/runtime-esm/hooks/useSubscription.js +0 -8
  156. package/build/runtime-esm/hooks/useSubscriptionHandle.d.ts +0 -25
  157. package/build/runtime-esm/hooks/useSubscriptionHandle.js +0 -18
  158. package/build/runtime-esm/index.d.ts +0 -14
  159. package/build/runtime-esm/index.js +0 -48
  160. package/build/runtime-esm/manifest.d.ts +0 -3
  161. package/build/runtime-esm/manifest.js +0 -5
  162. package/build/runtime-esm/routing/Router.d.ts +0 -62
  163. package/build/runtime-esm/routing/Router.js +0 -499
  164. package/build/runtime-esm/routing/cache.d.ts +0 -7
  165. package/build/runtime-esm/routing/cache.js +0 -36
  166. package/build/runtime-esm/routing/hooks.d.ts +0 -40
  167. package/build/runtime-esm/routing/hooks.js +0 -53
  168. package/build/runtime-esm/routing/index.d.ts +0 -3
  169. package/build/runtime-esm/routing/index.js +0 -6
  170. package/build/server/index.d.ts +0 -1
  171. package/build/server-cjs/index.js +0 -28
  172. package/build/server-cjs/package.json +0 -1
  173. package/build/server-esm/index.js +0 -4
  174. package/build/server-esm/package.json +0 -1
  175. /package/{build/plugin-esm → server}/package.json +0 -0
  176. /package/{build/runtime-esm → vite}/package.json +0 -0
@@ -0,0 +1,90 @@
1
+ import * as graphql from "graphql";
2
+ import {
3
+ ArtifactKind,
4
+ artifact_import,
5
+ ensure_imports,
6
+ find_graphql,
7
+ parseJS,
8
+ path,
9
+ printJS
10
+ } from "houdini";
11
+ import { componentField_unit_path, houdini_root } from "houdini/router/conventions";
12
+ import * as recast from "recast";
13
+ const AST = recast.types.builders;
14
+ async function transform_file(page, cfRows) {
15
+ const isJSX = page.filepath.endsWith(".tsx") || page.filepath.endsWith(".jsx");
16
+ if (!isJSX && !page.filepath.endsWith(".ts") && !page.filepath.endsWith(".js")) {
17
+ return { code: page.content, map: page.map };
18
+ }
19
+ const script = parseJS(page.content, isJSX ? { plugins: ["jsx"] } : {});
20
+ const cfMap = {};
21
+ for (const row of cfRows) {
22
+ if (row.type && row.field && row.fragment) {
23
+ cfMap[row.type] ??= {};
24
+ cfMap[row.type][row.field] = row.fragment;
25
+ }
26
+ }
27
+ await find_graphql(page.config, script, {
28
+ skipGraphqlType: true,
29
+ tag({ node, artifact, parsedDocument }) {
30
+ const { id: artifactRef } = artifact_import({ page, script, artifact });
31
+ const properties = [AST.objectProperty(AST.stringLiteral("artifact"), artifactRef)];
32
+ if (is_paginated(parsedDocument)) {
33
+ if (artifact.kind !== ArtifactKind.Query) {
34
+ const refetchName = artifact.name + "_Pagination_Query";
35
+ const { id: refetchRef } = artifact_import({
36
+ page,
37
+ script,
38
+ artifact: { name: refetchName }
39
+ });
40
+ properties.push(
41
+ AST.objectProperty(AST.stringLiteral("refetchArtifact"), refetchRef)
42
+ );
43
+ } else {
44
+ properties.push(
45
+ AST.objectProperty(AST.stringLiteral("refetchArtifact"), artifactRef)
46
+ );
47
+ }
48
+ }
49
+ if (Object.keys(cfMap).length > 0) {
50
+ const typeInfo = new graphql.TypeInfo(page.config.schema);
51
+ graphql.visit(
52
+ parsedDocument,
53
+ graphql.visitWithTypeInfo(typeInfo, {
54
+ Field(fieldNode) {
55
+ const parentType = typeInfo.getParentType();
56
+ const typeName = parentType?.name;
57
+ if (!typeName) return;
58
+ const fragmentName = cfMap[typeName]?.[fieldNode.name.value];
59
+ if (!fragmentName) return;
60
+ const entryPointPath = componentField_unit_path(
61
+ page.config,
62
+ fragmentName
63
+ );
64
+ ensure_imports({
65
+ script,
66
+ sourceModule: "$houdini/" + path.relative(houdini_root(page.config), entryPointPath)
67
+ });
68
+ }
69
+ })
70
+ );
71
+ }
72
+ node.replaceWith(AST.objectExpression(properties));
73
+ }
74
+ });
75
+ return printJS(script);
76
+ }
77
+ function is_paginated(doc) {
78
+ let paginated = false;
79
+ graphql.visit(doc, {
80
+ Directive(node) {
81
+ if (node.name.value === "paginate") {
82
+ paginated = true;
83
+ }
84
+ }
85
+ });
86
+ return paginated;
87
+ }
88
+ export {
89
+ transform_file
90
+ };
package/README.md DELETED
@@ -1,36 +0,0 @@
1
- <div align="center">
2
- <picture>
3
- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/logo_l.svg">
4
- <img height="140" alt="Houdini's logo (dark or light)" src="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/logo_d.svg">
5
- </picture>
6
- <br />
7
- <br />
8
- <strong>
9
- The disappearing GraphQL clients.
10
- </strong>
11
- <br />
12
- <br />
13
- <a href="https://npmjs.org/package/houdini">
14
- <img src="https://img.shields.io/npm/v/houdini.svg" alt="version" />
15
- </a>
16
- <a href="https://github.com/HoudiniGraphql/houdini/actions">
17
- <img src="https://github.com/HoudiniGraphql/houdini/actions/workflows/tests.yml/badge.svg" alt="CI Tests" />
18
- </a>
19
- <a href="https://github.com/HoudiniGraphql/houdini">
20
- <img src="https://img.shields.io/github/stars/HoudiniGraphql/houdini.svg?label=stars" alt="github stars" />
21
- </a>
22
- <a href="https://npmjs.org/package/houdini">
23
- <img src="https://img.shields.io/npm/dm/houdini.svg" alt="downloads" />
24
- </a>
25
- <a href="https://github.com/HoudiniGraphql/houdini/blob/main/LICENSE">
26
- <img src="https://img.shields.io/github/license/HoudiniGraphql/houdini.svg?maxAge=2592000" alt="license" />
27
- </a>
28
- </div>
29
-
30
- ----
31
-
32
- At its core, houdini seeks to enable a high quality developer experience
33
- without compromising bundle size. Like Svelte, houdini shifts what is
34
- traditionally handled by a bloated runtime into a compile step that allows
35
- for the generation of an incredibly lean GraphQL abstraction for your application.
36
- See more at <a href="https://www.houdinigraphql.com">HoudiniGraphQL.com</a> 🚀
@@ -1,6 +0,0 @@
1
- import { type Config, type ProjectManifest, type Document } from 'houdini';
2
- export declare function generate_routing_document_wrappers({ manifest, config, documents, }: {
3
- manifest: ProjectManifest;
4
- config: Config;
5
- documents: Record<string, Document>;
6
- }): Promise<void[]>;
@@ -1,5 +0,0 @@
1
- import { type Config, type ProjectManifest } from 'houdini';
2
- export declare function generate_fallbacks({ config, project, }: {
3
- config: Config;
4
- project: ProjectManifest;
5
- }): Promise<void>;
@@ -1,16 +0,0 @@
1
- import type { Config, ProjectManifest, PageManifest, Document } from 'houdini';
2
- import type { ComponentFieldData } from '..';
3
- export declare function generate_entries({ config, manifest, documents, componentFields, }: {
4
- config: Config;
5
- manifest: ProjectManifest;
6
- documents: Document[];
7
- componentFields: ComponentFieldData[];
8
- }): Promise<void>;
9
- export type PageBundleInput = {
10
- id: string;
11
- page: PageManifest;
12
- project: ProjectManifest;
13
- config: Config;
14
- documents: Record<string, Document>;
15
- componentFields: ComponentFieldData[];
16
- };
@@ -1,2 +0,0 @@
1
- import type { PageBundleInput } from '.';
2
- export declare function generate_page_entries(args: PageBundleInput): Promise<void>;
@@ -1,17 +0,0 @@
1
- import type { Config, GenerateHookInput, ProjectManifest } from 'houdini';
2
- import { processComponentFieldDirective } from 'houdini';
3
- /**
4
- * The router is fundamentally a component that knows how to render
5
- * a particular component tree for a given url. This is driven by something
6
- * we call the applications "manifest".
7
- *
8
- * In react, the tree of route directories maps to a component hierarchy
9
- * with suspense boundaries sprinkled when there is a loading directive
10
- * present on a query.
11
- */
12
- export default function routerCodegen({ config, manifest, documents, }: GenerateHookInput & {
13
- manifest: ProjectManifest;
14
- }): Promise<void>;
15
- export type ComponentFieldData = ReturnType<typeof processComponentFieldDirective> & Config['componentFields'][string][string] & {
16
- type: string;
17
- };
@@ -1,5 +0,0 @@
1
- import { type Config, type ProjectManifest } from 'houdini';
2
- export declare function write_manifest({ config, manifest, }: {
3
- config: Config;
4
- manifest: ProjectManifest;
5
- }): Promise<void>;
@@ -1,7 +0,0 @@
1
- import { type Config, type ProjectManifest } from 'houdini';
2
- import type { ComponentFieldData } from '.';
3
- export declare function generate_renders({ componentFields, config, manifest, }: {
4
- componentFields: ComponentFieldData[];
5
- config: Config;
6
- manifest: ProjectManifest;
7
- }): Promise<void>;
@@ -1,7 +0,0 @@
1
- import { type Config, type ProjectManifest } from 'houdini';
2
- export declare function format_router_manifest({ config, manifest, exportDefaultStatement, }: {
3
- config: Config;
4
- manifest: ProjectManifest;
5
- exportDefaultStatement: (name: string) => string;
6
- importStatement: (from: string, as: string) => string;
7
- }): string;
@@ -1,5 +0,0 @@
1
- import { type Config, type ProjectManifest } from 'houdini';
2
- export declare function generate_type_root({ config, manifest, }: {
3
- config: Config;
4
- manifest: ProjectManifest;
5
- }): Promise<void>;
@@ -1,4 +0,0 @@
1
- import type { Config } from 'houdini';
2
- import type { HoudiniReactPluginConfig } from '.';
3
- export declare function plugin_config(config: Config): HoudiniReactPluginConfig;
4
- export declare function test_config(): Promise<Config>;
@@ -1 +0,0 @@
1
- export declare function dedent(indentString: string, input?: string): string;
@@ -1,6 +0,0 @@
1
- import type { Config } from 'houdini';
2
- export declare function extractDocuments({ content, config, filepath, }: {
3
- config: Config;
4
- content: string;
5
- filepath: string;
6
- }): Promise<string[]>;
@@ -1,5 +0,0 @@
1
- import { type Plugin } from 'houdini';
2
- export declare const hooks: Plugin;
3
- declare const _default: import("houdini").PluginInit;
4
- export default _default;
5
- export type HoudiniReactPluginConfig = {};
@@ -1,3 +0,0 @@
1
- import type { ProjectManifest } from 'houdini';
2
- export declare let manifest: ProjectManifest;
3
- export declare function setManifest(newManifest: ProjectManifest): void;
@@ -1,6 +0,0 @@
1
- import type { TransformPage } from 'houdini/vite';
2
- import type { SourceMapInput } from 'rollup';
3
- export declare function transformFile(page: TransformPage): Promise<{
4
- code: string;
5
- map?: SourceMapInput;
6
- }>;
@@ -1,27 +0,0 @@
1
- import { ConfigEnv } from 'vite';
2
- declare const _default: {
3
- config?: ((config: import("houdini").Config, env: ConfigEnv) => import("vite").UserConfig | Promise<import("vite").UserConfig>) | undefined;
4
- buildStart?: ((this: import("rollup").PluginContext, options: import("rollup").NormalizedInputOptions & {
5
- houdiniConfig: import("houdini").Config;
6
- }) => void | Promise<void>) | undefined;
7
- buildEnd?: ((this: import("rollup").PluginContext, error?: Error | undefined, houdiniConfig?: import("houdini").Config | undefined) => void | Promise<void>) | undefined;
8
- closeBundle?: ((this: import("rollup").PluginContext, config: import("houdini").Config) => void | Promise<void>) | undefined;
9
- configResolved?: import("rollup").ObjectHook<(this: void, config: import("vite").ResolvedConfig) => void | Promise<void>, {}> | undefined;
10
- options?: ((this: import("rollup").MinimalPluginContext, options: import("rollup").InputOptions & {
11
- houdiniConfig: import("houdini").Config;
12
- }) => import("rollup").InputOptions | import("rollup").NullValue) | undefined;
13
- resolveId?: import("rollup").ObjectHook<(this: import("rollup").PluginContext, source: string, importer: string | undefined, options: {
14
- config: import("houdini").Config;
15
- custom?: import("rollup").CustomPluginOptions | undefined;
16
- ssr?: boolean | undefined;
17
- isEntry: boolean;
18
- }) => import("rollup").ResolveIdResult | Promise<import("rollup").ResolveIdResult>, {}> | undefined;
19
- load?: import("rollup").ObjectHook<(this: import("rollup").PluginContext, id: string, options: {
20
- config: import("houdini").Config;
21
- ssr?: boolean | undefined;
22
- }) => import("rollup").LoadResult | Promise<import("rollup").LoadResult>, {}> | undefined;
23
- configureServer?: import("rollup").ObjectHook<(this: void, server: import("vite").ViteDevServer & {
24
- houdiniConfig: import("houdini").Config;
25
- }) => void | (() => void) | Promise<void | (() => void)>, {}> | undefined;
26
- } | undefined;
27
- export default _default;