We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a75d1c commit 2a2fe3aCopy full SHA for 2a2fe3a
packages/core/src/types.ts
@@ -67,7 +67,7 @@ export type FetchOptions<F extends FetchFunction = FetchFunction> =
67
EndpointExtraOptions<F>;
68
69
export interface ReceiveMeta<S extends Schema | undefined> {
70
- schema: S;
+ schema?: S;
71
key: string;
72
args?: readonly any[];
73
updaters?: Record<string, UpdateFunction<S, any>>;
@@ -101,7 +101,7 @@ interface FetchMeta<
101
S extends Schema | undefined = any,
102
> {
103
type: FetchShape<any, any>['type'];
104
105
106
107
0 commit comments