@@ -95,7 +95,7 @@ declare global {
95
95
) => Param extends string ? ImplementableNodeRef < Types , Shape , Shape , IDShape > : Param ;
96
96
97
97
node : <
98
- Interfaces extends InterfaceParam < Types > [ ] ,
98
+ const Interfaces extends InterfaceParam < Types > [ ] ,
99
99
Param extends ObjectParam < Types > ,
100
100
IDShape = string ,
101
101
> (
@@ -118,7 +118,7 @@ declare global {
118
118
Nullable extends boolean ,
119
119
ResolveShape ,
120
120
ResolveReturnShape ,
121
- Interfaces extends InterfaceParam < Types > [ ] ,
121
+ const Interfaces extends InterfaceParam < Types > [ ] ,
122
122
InputName extends string = 'input' ,
123
123
Args extends InputFieldMap = { } ,
124
124
> (
@@ -147,8 +147,8 @@ declare global {
147
147
ResolveReturnShape ,
148
148
EdgeNullability extends FieldNullability < [ unknown ] > = Types [ 'DefaultEdgesNullability' ] ,
149
149
NodeNullability extends boolean = Types [ 'DefaultNodeNullability' ] ,
150
- ConnectionInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
151
- EdgeInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
150
+ const ConnectionInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
151
+ const EdgeInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
152
152
> (
153
153
connectionOptions : ConnectionObjectOptions <
154
154
Types ,
@@ -190,7 +190,7 @@ declare global {
190
190
Type extends OutputType < Types > ,
191
191
ResolveReturnShape ,
192
192
NodeNullability extends boolean = Types [ 'DefaultNodeNullability' ] ,
193
- Interfaces extends InterfaceParam < Types > [ ] = [ ] ,
193
+ const Interfaces extends InterfaceParam < Types > [ ] = [ ] ,
194
194
> (
195
195
edgeOptions : ConnectionEdgeObjectOptions <
196
196
Types ,
@@ -298,8 +298,8 @@ declare global {
298
298
ResolveReturnShape ,
299
299
EdgeNullability extends FieldNullability < [ unknown ] > = Types [ 'DefaultEdgesNullability' ] ,
300
300
NodeNullability extends boolean = Types [ 'DefaultNodeNullability' ] ,
301
- ConnectionInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
302
- EdgeInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
301
+ const ConnectionInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
302
+ const EdgeInterfaces extends InterfaceParam < Types > [ ] = [ ] ,
303
303
ConnectionResult extends ConnectionResultShape <
304
304
Types ,
305
305
ShapeFromTypeParam < Types , Type , false > ,
0 commit comments