Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc01da5d

Browse files
authored
Feature:useSuspenseFragment (#12066)
1 parente189596 commitc01da5d

File tree

15 files changed

+2498
-11
lines changed

15 files changed

+2498
-11
lines changed

‎.api-reports/api-report-react.api.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,11 @@ TData
886886
};
887887
}:never:never;
888888

889+
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
890+
//
891+
// @public (undocumented)
892+
typeFrom<TData>=StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
893+
889894
//@internal
890895
const getApolloCacheMemoryInternals: (()=> {
891896
cache: {
@@ -2317,8 +2322,6 @@ export function useFragment<TData = any, TVars = OperationVariables>(options: Us
23172322
// @public (undocumented)
23182323
exportinterfaceUseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
23192324
client?:ApolloClient<any>;
2320-
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
2321-
//
23222325
// (undocumented)
23232326
from:StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
23242327
// (undocumented)
@@ -2413,6 +2416,40 @@ export function useSubscription<TData = any, TVariables extends OperationVariabl
24132416
variables?:TVariables|undefined;
24142417
};
24152418

2419+
// Warning: (ae-forgotten-export) The symbol "UseSuspenseFragmentOptions" needs to be exported by the entry point index.d.ts
2420+
//
2421+
// @public (undocumented)
2422+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2423+
from:NonNullable<From<TData>>;
2424+
}):UseSuspenseFragmentResult<TData>;
2425+
2426+
// @public (undocumented)
2427+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2428+
from:null;
2429+
}):UseSuspenseFragmentResult<null>;
2430+
2431+
// @public (undocumented)
2432+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2433+
from:From<TData>;
2434+
}):UseSuspenseFragmentResult<TData|null>;
2435+
2436+
// @public (undocumented)
2437+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>):UseSuspenseFragmentResult<TData>;
2438+
2439+
// @public (undocumented)
2440+
interfaceUseSuspenseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
2441+
client?:ApolloClient<any>;
2442+
// (undocumented)
2443+
from:From<TData>;
2444+
// (undocumented)
2445+
optimistic?:boolean;
2446+
}
2447+
2448+
// @public (undocumented)
2449+
exporttypeUseSuspenseFragmentResult<TData>= {
2450+
data:MaybeMasked<TData>;
2451+
};
2452+
24162453
// @public (undocumented)
24172454
exportfunction useSuspenseQuery<TData,TVariablesextendsOperationVariables,TOptionsextendsOmit<SuspenseQueryHookOptions<TData>,"variables">>(query:DocumentNode|TypedDocumentNode<TData,TVariables>,options?:SuspenseQueryHookOptions<NoInfer_2<TData>,NoInfer_2<TVariables>>&TOptions):UseSuspenseQueryResult<TOptions["errorPolicy"]extends"ignore"|"all"?TOptions["returnPartialData"]extendstrue?DeepPartial<TData>|undefined:TData|undefined:TOptions["returnPartialData"]extendstrue?TOptions["skip"]extendsboolean?DeepPartial<TData>|undefined:DeepPartial<TData>:TOptions["skip"]extendsboolean?TData|undefined:TData,TVariables>;
24182455

@@ -2531,6 +2568,7 @@ interface WatchQueryOptions<TVariables extends OperationVariables = OperationVar
25312568
// src/react/hooks/useBackgroundQuery.ts:54:3 - (ae-forgotten-export) The symbol "FetchMoreFunction" needs to be exported by the entry point index.d.ts
25322569
// src/react/hooks/useBackgroundQuery.ts:78:4 - (ae-forgotten-export) The symbol "RefetchFunction" needs to be exported by the entry point index.d.ts
25332570
// src/react/hooks/useLoadableQuery.ts:120:9 - (ae-forgotten-export) The symbol "ResetFunction" needs to be exported by the entry point index.d.ts
2571+
// src/react/hooks/useSuspenseFragment.ts:60:5 - (ae-forgotten-export) The symbol "From" needs to be exported by the entry point index.d.ts
25342572

25352573
// (No @packageDocumentation comment for this package)
25362574

‎.api-reports/api-report-react_hooks.api.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,11 @@ TData
841841
};
842842
}:never:never;
843843

844+
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
845+
//
846+
// @public (undocumented)
847+
typeFrom<TData>=StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
848+
844849
//@internal
845850
const getApolloCacheMemoryInternals: (()=> {
846851
cache: {
@@ -2141,8 +2146,6 @@ export function useFragment<TData = any, TVars = OperationVariables>(options: Us
21412146
// @public (undocumented)
21422147
exportinterfaceUseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
21432148
client?:ApolloClient<any>;
2144-
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
2145-
//
21462149
// (undocumented)
21472150
from:StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
21482151
// (undocumented)
@@ -2246,6 +2249,40 @@ export function useSubscription<TData = any, TVariables extends OperationVariabl
22462249
variables?:TVariables|undefined;
22472250
};
22482251

2252+
// Warning: (ae-forgotten-export) The symbol "UseSuspenseFragmentOptions" needs to be exported by the entry point index.d.ts
2253+
//
2254+
// @public (undocumented)
2255+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2256+
from:NonNullable<From<TData>>;
2257+
}):UseSuspenseFragmentResult<TData>;
2258+
2259+
// @public (undocumented)
2260+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2261+
from:null;
2262+
}):UseSuspenseFragmentResult<null>;
2263+
2264+
// @public (undocumented)
2265+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2266+
from:From<TData>;
2267+
}):UseSuspenseFragmentResult<TData|null>;
2268+
2269+
// @public (undocumented)
2270+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>):UseSuspenseFragmentResult<TData>;
2271+
2272+
// @public (undocumented)
2273+
interfaceUseSuspenseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
2274+
client?:ApolloClient<any>;
2275+
// (undocumented)
2276+
from:From<TData>;
2277+
// (undocumented)
2278+
optimistic?:boolean;
2279+
}
2280+
2281+
// @public (undocumented)
2282+
exporttypeUseSuspenseFragmentResult<TData>= {
2283+
data:MaybeMasked<TData>;
2284+
};
2285+
22492286
// Warning: (ae-forgotten-export) The symbol "SuspenseQueryHookOptions" needs to be exported by the entry point index.d.ts
22502287
//
22512288
// @public (undocumented)
@@ -2355,6 +2392,7 @@ interface WatchQueryOptions<TVariables extends OperationVariables = OperationVar
23552392
// src/react/hooks/useBackgroundQuery.ts:54:3 - (ae-forgotten-export) The symbol "FetchMoreFunction" needs to be exported by the entry point index.d.ts
23562393
// src/react/hooks/useBackgroundQuery.ts:78:4 - (ae-forgotten-export) The symbol "RefetchFunction" needs to be exported by the entry point index.d.ts
23572394
// src/react/hooks/useLoadableQuery.ts:120:9 - (ae-forgotten-export) The symbol "ResetFunction" needs to be exported by the entry point index.d.ts
2395+
// src/react/hooks/useSuspenseFragment.ts:60:5 - (ae-forgotten-export) The symbol "From" needs to be exported by the entry point index.d.ts
23582396

23592397
// (No @packageDocumentation comment for this package)
23602398

‎.api-reports/api-report-react_internal.api.md

Lines changed: 105 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,19 @@ interface FieldSpecifier {
807807
variables?:Record<string,any>;
808808
}
809809

810+
// @public (undocumented)
811+
typeFragmentCacheKey= [
812+
cacheId:string,
813+
fragment:DocumentNode,
814+
stringifiedVariables:string
815+
];
816+
817+
// @public (undocumented)
818+
interfaceFragmentKey {
819+
// (undocumented)
820+
__fragmentKey?:string;
821+
}
822+
810823
// @public
811824
interfaceFragmentMap {
812825
// (undocumented)
@@ -816,6 +829,43 @@ interface FragmentMap {
816829
// @public (undocumented)
817830
typeFragmentMatcher= (rootValue:any,typeCondition:string,context:any)=>boolean;
818831

832+
// @public (undocumented)
833+
classFragmentReference<TData=unknown,TVariables=Record<string,unknown>> {
834+
// Warning: (ae-forgotten-export) The symbol "FragmentReferenceOptions" needs to be exported by the entry point index.d.ts
835+
constructor(client:ApolloClient<any>,watchFragmentOptions:WatchFragmentOptions<TData,TVariables>& {
836+
from:string;
837+
},options:FragmentReferenceOptions);
838+
// Warning: (ae-forgotten-export) The symbol "FragmentKey" needs to be exported by the entry point index.d.ts
839+
//
840+
// (undocumented)
841+
readonly key:FragmentKey;
842+
// Warning: (ae-forgotten-export) The symbol "Listener_2" needs to be exported by the entry point index.d.ts
843+
//
844+
// (undocumented)
845+
listen(listener:Listener_2<MaybeMasked<TData>>): ()=>void;
846+
// (undocumented)
847+
readonly observable:Observable<WatchFragmentResult<TData>>;
848+
// Warning: (ae-forgotten-export) The symbol "FragmentRefPromise" needs to be exported by the entry point index.d.ts
849+
//
850+
// (undocumented)
851+
promise:FragmentRefPromise<MaybeMasked<TData>>;
852+
// (undocumented)
853+
retain(): ()=>void;
854+
}
855+
856+
// @public (undocumented)
857+
interfaceFragmentReferenceOptions {
858+
// (undocumented)
859+
autoDisposeTimeoutMs?:number;
860+
// (undocumented)
861+
onDispose?: ()=>void;
862+
}
863+
864+
// Warning: (ae-forgotten-export) The symbol "PromiseWithState" needs to be exported by the entry point index.d.ts
865+
//
866+
// @public (undocumented)
867+
typeFragmentRefPromise<TData>=PromiseWithState<TData>;
868+
819869
// @public (undocumented)
820870
typeFragmentType<TData>= [
821871
TData
@@ -827,6 +877,11 @@ TData
827877
};
828878
}:never:never;
829879

880+
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
881+
//
882+
// @public (undocumented)
883+
typeFrom<TData>=StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
884+
830885
// @public (undocumented)
831886
interfaceFulfilledPromise<TValue>extendsPromise<TValue> {
832887
// (undocumented)
@@ -1036,6 +1091,9 @@ type IsStrictlyAny<T> = UnionToIntersection<UnionForAny<T>> extends never ? true
10361091
// @public (undocumented)
10371092
typeListener<TData>= (promise:QueryRefPromise<TData>)=>void;
10381093

1094+
// @public (undocumented)
1095+
typeListener_2<TData>= (promise:FragmentRefPromise<TData>)=>void;
1096+
10391097
// @public (undocumented)
10401098
classLocalState<TCacheShape> {
10411099
// Warning: (ae-forgotten-export) The symbol "LocalStateOptions" needs to be exported by the entry point index.d.ts
@@ -1766,8 +1824,6 @@ export interface QueryReference<TData = unknown, TVariables = unknown> extends Q
17661824
toPromise?:unknown;
17671825
}
17681826

1769-
// Warning: (ae-forgotten-export) The symbol "PromiseWithState" needs to be exported by the entry point index.d.ts
1770-
//
17711827
// @public (undocumented)
17721828
typeQueryRefPromise<TData>=PromiseWithState<ApolloQueryResult<MaybeMasked<TData>>>;
17731829

@@ -1999,6 +2055,13 @@ class SuspenseCache {
19992055
constructor(options?:SuspenseCacheOptions);
20002056
// (undocumented)
20012057
add(cacheKey:CacheKey,queryRef:InternalQueryReference<unknown>):void;
2058+
// Warning: (ae-forgotten-export) The symbol "FragmentCacheKey" needs to be exported by the entry point index.d.ts
2059+
// Warning: (ae-forgotten-export) The symbol "FragmentReference" needs to be exported by the entry point index.d.ts
2060+
//
2061+
// (undocumented)
2062+
getFragmentRef<TData,TVariables>(cacheKey:FragmentCacheKey,client:ApolloClient<any>,options:WatchFragmentOptions<TData,TVariables>& {
2063+
from:string;
2064+
}):FragmentReference<TData,TVariables>;
20022065
// (undocumented)
20032066
getQueryRef<TData=any>(cacheKey:CacheKey,createObservable: ()=>ObservableQuery<TData>):InternalQueryReference<TData>;
20042067
}
@@ -2203,8 +2266,6 @@ function useFragment<TData = any, TVars = OperationVariables>(options: UseFragme
22032266
// @public (undocumented)
22042267
interfaceUseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
22052268
client?:ApolloClient<any>;
2206-
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
2207-
//
22082269
// (undocumented)
22092270
from:StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
22102271
// (undocumented)
@@ -2251,6 +2312,41 @@ interface UseReadQueryResult<TData = unknown> {
22512312
networkStatus:NetworkStatus;
22522313
}
22532314

2315+
// Warning: (ae-forgotten-export) The symbol "UseSuspenseFragmentOptions" needs to be exported by the entry point index.d.ts
2316+
// Warning: (ae-forgotten-export) The symbol "UseSuspenseFragmentResult" needs to be exported by the entry point index.d.ts
2317+
//
2318+
// @public (undocumented)
2319+
function useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2320+
from:NonNullable<From<TData>>;
2321+
}):UseSuspenseFragmentResult<TData>;
2322+
2323+
// @public (undocumented)
2324+
function useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2325+
from:null;
2326+
}):UseSuspenseFragmentResult<null>;
2327+
2328+
// @public (undocumented)
2329+
function useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
2330+
from:From<TData>;
2331+
}):UseSuspenseFragmentResult<TData|null>;
2332+
2333+
// @public (undocumented)
2334+
function useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>):UseSuspenseFragmentResult<TData>;
2335+
2336+
// @public (undocumented)
2337+
interfaceUseSuspenseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
2338+
client?:ApolloClient<any>;
2339+
// (undocumented)
2340+
from:From<TData>;
2341+
// (undocumented)
2342+
optimistic?:boolean;
2343+
}
2344+
2345+
// @public (undocumented)
2346+
typeUseSuspenseFragmentResult<TData>= {
2347+
data:MaybeMasked<TData>;
2348+
};
2349+
22542350
// Warning: (ae-forgotten-export) The symbol "SuspenseQueryHookOptions" needs to be exported by the entry point index.d.ts
22552351
// Warning: (ae-forgotten-export) The symbol "UseSuspenseQueryResult" needs to be exported by the entry point index.d.ts
22562352
//
@@ -2378,6 +2474,10 @@ interface WrappableHooks {
23782474
//
23792475
// (undocumented)
23802476
useReadQuery:typeofuseReadQuery;
2477+
// Warning: (ae-forgotten-export) The symbol "useSuspenseFragment" needs to be exported by the entry point index.d.ts
2478+
//
2479+
// (undocumented)
2480+
useSuspenseFragment:typeofuseSuspenseFragment;
23812481
// Warning: (ae-forgotten-export) The symbol "useSuspenseQuery" needs to be exported by the entry point index.d.ts
23822482
//
23832483
// (undocumented)
@@ -2416,6 +2516,7 @@ export function wrapQueryRef<TData, TVariables extends OperationVariables>(inter
24162516
// src/react/hooks/useBackgroundQuery.ts:38:3 - (ae-forgotten-export) The symbol "SubscribeToMoreFunction" needs to be exported by the entry point index.d.ts
24172517
// src/react/hooks/useBackgroundQuery.ts:54:3 - (ae-forgotten-export) The symbol "FetchMoreFunction" needs to be exported by the entry point index.d.ts
24182518
// src/react/hooks/useBackgroundQuery.ts:78:4 - (ae-forgotten-export) The symbol "RefetchFunction" needs to be exported by the entry point index.d.ts
2519+
// src/react/hooks/useSuspenseFragment.ts:60:5 - (ae-forgotten-export) The symbol "From" needs to be exported by the entry point index.d.ts
24192520
// src/react/query-preloader/createQueryPreloader.ts:145:3 - (ae-forgotten-export) The symbol "PreloadQueryFetchPolicy" needs to be exported by the entry point index.d.ts
24202521
// src/react/query-preloader/createQueryPreloader.ts:167:5 - (ae-forgotten-export) The symbol "RefetchWritePolicy" needs to be exported by the entry point index.d.ts
24212522

‎.api-reports/api-report.api.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,6 +1094,9 @@ TData
10941094
};
10951095
}:never:never;
10961096

1097+
// @public (undocumented)
1098+
typeFrom<TData>=StoreObject|Reference|FragmentType<NoInfer_2<TData>>|string|null;
1099+
10971100
// @public (undocumented)
10981101
exportconst from:typeofApolloLink.from;
10991102

@@ -3084,6 +3087,40 @@ export function useSubscription<TData = any, TVariables extends OperationVariabl
30843087
variables?:TVariables|undefined;
30853088
};
30863089

3090+
// Warning: (ae-forgotten-export) The symbol "UseSuspenseFragmentOptions" needs to be exported by the entry point index.d.ts
3091+
//
3092+
// @public (undocumented)
3093+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
3094+
from:NonNullable<From<TData>>;
3095+
}):UseSuspenseFragmentResult<TData>;
3096+
3097+
// @public (undocumented)
3098+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
3099+
from:null;
3100+
}):UseSuspenseFragmentResult<null>;
3101+
3102+
// @public (undocumented)
3103+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>& {
3104+
from:From<TData>;
3105+
}):UseSuspenseFragmentResult<TData|null>;
3106+
3107+
// @public (undocumented)
3108+
exportfunction useSuspenseFragment<TData,TVariablesextendsOperationVariables=OperationVariables>(options:UseSuspenseFragmentOptions<TData,TVariables>):UseSuspenseFragmentResult<TData>;
3109+
3110+
// @public (undocumented)
3111+
interfaceUseSuspenseFragmentOptions<TData,TVars>extendsOmit<Cache_2.DiffOptions<NoInfer_2<TData>,NoInfer_2<TVars>>,"id"|"query"|"optimistic"|"previousResult"|"returnPartialData">,Omit<Cache_2.ReadFragmentOptions<TData,TVars>,"id"|"variables"|"returnPartialData"> {
3112+
client?:ApolloClient<any>;
3113+
// (undocumented)
3114+
from:From<TData>;
3115+
// (undocumented)
3116+
optimistic?:boolean;
3117+
}
3118+
3119+
// @public (undocumented)
3120+
exporttypeUseSuspenseFragmentResult<TData>= {
3121+
data:MaybeMasked<TData>;
3122+
};
3123+
30873124
// @public (undocumented)
30883125
exportfunction useSuspenseQuery<TData,TVariablesextendsOperationVariables,TOptionsextendsOmit<SuspenseQueryHookOptions<TData>,"variables">>(query:DocumentNode|TypedDocumentNode<TData,TVariables>,options?:SuspenseQueryHookOptions<NoInfer_2<TData>,NoInfer_2<TVariables>>&TOptions):UseSuspenseQueryResult<TOptions["errorPolicy"]extends"ignore"|"all"?TOptions["returnPartialData"]extendstrue?DeepPartial<TData>|undefined:TData|undefined:TOptions["returnPartialData"]extendstrue?TOptions["skip"]extendsboolean?DeepPartial<TData>|undefined:DeepPartial<TData>:TOptions["skip"]extendsboolean?TData|undefined:TData,TVariables>;
30893126

@@ -3230,6 +3267,7 @@ interface WriteContext extends ReadMergeModifyContext {
32303267
// src/react/hooks/useBackgroundQuery.ts:54:3 - (ae-forgotten-export) The symbol "FetchMoreFunction" needs to be exported by the entry point index.d.ts
32313268
// src/react/hooks/useBackgroundQuery.ts:78:4 - (ae-forgotten-export) The symbol "RefetchFunction" needs to be exported by the entry point index.d.ts
32323269
// src/react/hooks/useLoadableQuery.ts:120:9 - (ae-forgotten-export) The symbol "ResetFunction" needs to be exported by the entry point index.d.ts
3270+
// src/react/hooks/useSuspenseFragment.ts:60:5 - (ae-forgotten-export) The symbol "From" needs to be exported by the entry point index.d.ts
32333271

32343272
// (No @packageDocumentation comment for this package)
32353273

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp