Commit 9221c0e 1 parent bf7e02f commit 9221c0e Copy full SHA for 9221c0e
File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -97,9 +97,9 @@ export interface AssignSelections {
97
97
98
98
export interface AccessorCreators <
99
99
GeneratedSchema extends {
100
- query : { } ;
101
- mutation : { } ;
102
- subscription : { } ;
100
+ query : object ;
101
+ mutation : object ;
102
+ subscription : object ;
103
103
}
104
104
> {
105
105
createAccessor : (
@@ -123,9 +123,9 @@ export interface AccessorCreators<
123
123
124
124
export function createAccessorCreators <
125
125
GeneratedSchema extends {
126
- query : { } ;
127
- mutation : { } ;
128
- subscription : { } ;
126
+ query : object ;
127
+ mutation : object ;
128
+ subscription : object ;
129
129
} = never
130
130
> ( innerState : InnerClientState ) : AccessorCreators < GeneratedSchema > {
131
131
const {
Original file line number Diff line number Diff line change @@ -186,9 +186,9 @@ export interface Mutate<
186
186
187
187
export interface GQtyClient <
188
188
GeneratedSchema extends {
189
- query : { } ;
190
- mutation : { } ;
191
- subscription : { } ;
189
+ query : object ;
190
+ mutation : object ;
191
+ subscription : object ;
192
192
}
193
193
> extends PersistenceHelpers {
194
194
query : GeneratedSchema [ 'query' ] ;
You can’t perform that action at this time.
0 commit comments