houdini 1.4.1 → 1.4.3

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.
@@ -276,6 +276,10 @@ export type FetchParams<_Input> = {
276
276
  * You can do what you want with it!
277
277
  */
278
278
  metadata?: App.Metadata;
279
+ /**
280
+ * An abort controller to abort the operation
281
+ */
282
+ abortController?: AbortController;
279
283
  };
280
284
  export type FetchFn<_Data extends GraphQLObject, _Input = any> = (params?: FetchParams<_Input>) => Promise<QueryResult<_Data, _Input>>;
281
285
  export type CursorHandlers<_Data extends GraphQLObject, _Input> = {
@@ -21,6 +21,6 @@ export type RouterPageManifest<_ComponentType> = {
21
21
  }>;
22
22
  }>;
23
23
  component: () => Promise<{
24
- default: (props: any) => _ComponentType;
24
+ default: _ComponentType;
25
25
  }>;
26
26
  };
@@ -276,6 +276,10 @@ export type FetchParams<_Input> = {
276
276
  * You can do what you want with it!
277
277
  */
278
278
  metadata?: App.Metadata;
279
+ /**
280
+ * An abort controller to abort the operation
281
+ */
282
+ abortController?: AbortController;
279
283
  };
280
284
  export type FetchFn<_Data extends GraphQLObject, _Input = any> = (params?: FetchParams<_Input>) => Promise<QueryResult<_Data, _Input>>;
281
285
  export type CursorHandlers<_Data extends GraphQLObject, _Input> = {
@@ -21,6 +21,6 @@ export type RouterPageManifest<_ComponentType> = {
21
21
  }>;
22
22
  }>;
23
23
  component: () => Promise<{
24
- default: (props: any) => _ComponentType;
24
+ default: _ComponentType;
25
25
  }>;
26
26
  };
@@ -276,6 +276,10 @@ export type FetchParams<_Input> = {
276
276
  * You can do what you want with it!
277
277
  */
278
278
  metadata?: App.Metadata;
279
+ /**
280
+ * An abort controller to abort the operation
281
+ */
282
+ abortController?: AbortController;
279
283
  };
280
284
  export type FetchFn<_Data extends GraphQLObject, _Input = any> = (params?: FetchParams<_Input>) => Promise<QueryResult<_Data, _Input>>;
281
285
  export type CursorHandlers<_Data extends GraphQLObject, _Input> = {
@@ -21,6 +21,6 @@ export type RouterPageManifest<_ComponentType> = {
21
21
  }>;
22
22
  }>;
23
23
  component: () => Promise<{
24
- default: (props: any) => _ComponentType;
24
+ default: _ComponentType;
25
25
  }>;
26
26
  };