This repository has been archived by the owner on Aug 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nexus-typegen.d.ts
556 lines (528 loc) · 20.7 KB
/
nexus-typegen.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
/**
* This file was generated by Nexus Schema
* Do not make changes to this file directly
*/
import { MyContextType } from "./src/modules/model/context"
import { Decimal } from "@prisma/client/runtime"
import { core } from "nexus"
declare global {
interface NexusGenCustomInputMethods<TypeName extends string> {
/**
* A number without precision limits.
*/
decimal<FieldName extends string>(fieldName: FieldName, opts?: core.CommonInputFieldConfig<TypeName, FieldName>): void // "Decimal";
/**
* A timestamp.
*/
dateTime<FieldName extends string>(fieldName: FieldName, opts?: core.CommonInputFieldConfig<TypeName, FieldName>): void // "DateTime";
}
}
declare global {
interface NexusGenCustomOutputMethods<TypeName extends string> {
/**
* A number without precision limits.
*/
decimal<FieldName extends string>(fieldName: FieldName, ...opts: core.ScalarOutSpread<TypeName, FieldName>): void // "Decimal";
/**
* A timestamp.
*/
dateTime<FieldName extends string>(fieldName: FieldName, ...opts: core.ScalarOutSpread<TypeName, FieldName>): void // "DateTime";
}
}
declare global {
interface NexusGenCustomOutputProperties<TypeName extends string> {
model: NexusPrisma<TypeName, 'model'>
crud: any
}
}
declare global {
interface NexusGen extends NexusGenTypes {}
}
export interface NexusGenInputs {
CrashRelationWhereInput: { // input type
every?: NexusGenInputs['CrashWhereInput'] | null; // CrashWhereInput
none?: NexusGenInputs['CrashWhereInput'] | null; // CrashWhereInput
some?: NexusGenInputs['CrashWhereInput'] | null; // CrashWhereInput
}
CrashWhereInput: { // input type
AND?: Array<NexusGenInputs['CrashWhereInput'] | null> | null; // [CrashWhereInput]
NOT?: Array<NexusGenInputs['CrashWhereInput'] | null> | null; // [CrashWhereInput]
OR?: Array<NexusGenInputs['CrashWhereInput'] | null> | null; // [CrashWhereInput]
id?: NexusGenInputs['IdFilter'] | null; // IdFilter
reason?: NexusGenInputs['PaymentCrashReasonFilter'] | null; // PaymentCrashReasonFilter
}
DateTimeFilter: { // input type
equals?: NexusGenScalars['DateTime'] | null; // DateTime
gt?: NexusGenScalars['DateTime'] | null; // DateTime
gte?: NexusGenScalars['DateTime'] | null; // DateTime
in?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
lt?: NexusGenScalars['DateTime'] | null; // DateTime
lte?: NexusGenScalars['DateTime'] | null; // DateTime
not?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
notIn?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
}
DecimalFilter: { // input type
equals?: NexusGenScalars['Decimal'] | null; // Decimal
gt?: NexusGenScalars['Decimal'] | null; // Decimal
gte?: NexusGenScalars['Decimal'] | null; // Decimal
in?: Array<NexusGenScalars['Decimal'] | null> | null; // [Decimal]
lt?: NexusGenScalars['Decimal'] | null; // Decimal
lte?: NexusGenScalars['Decimal'] | null; // Decimal
not?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
notIn?: Array<NexusGenScalars['Decimal'] | null> | null; // [Decimal]
}
DepositWhereInput: { // input type
AND?: Array<NexusGenInputs['DepositWhereInput'] | null> | null; // [DepositWhereInput]
NOT?: Array<NexusGenInputs['DepositWhereInput'] | null> | null; // [DepositWhereInput]
OR?: Array<NexusGenInputs['DepositWhereInput'] | null> | null; // [DepositWhereInput]
addressContract?: NexusGenInputs['StringFilter'] | null; // StringFilter
addressFrom?: NexusGenInputs['StringFilter'] | null; // StringFilter
addressTo?: NexusGenInputs['StringFilter'] | null; // StringFilter
at?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
blockNumber?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
crashes?: NexusGenInputs['CrashRelationWhereInput'] | null; // CrashRelationWhereInput
createdAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
gas?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
gasPrice?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
hash?: NexusGenInputs['StringFilter'] | null; // StringFilter
network?: NexusGenInputs['NetworkFilter'] | null; // NetworkFilter
payments?: NexusGenInputs['PaymentRelationWhereInput'] | null; // PaymentRelationWhereInput
tokenDecimals?: NexusGenInputs['IntFilter'] | null; // IntFilter
transactionIndex?: NexusGenInputs['IntFilter'] | null; // IntFilter
updatedAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
value?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
}
IdFilter: { // input type
equals?: string | null; // ID
gt?: string | null; // ID
gte?: string | null; // ID
in?: Array<string | null> | null; // [ID]
lt?: string | null; // ID
lte?: string | null; // ID
not?: NexusGenInputs['IdFilter'] | null; // IdFilter
notIn?: Array<string | null> | null; // [ID]
}
IntFilter: { // input type
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
not?: NexusGenInputs['IntFilter'] | null; // IntFilter
notIn?: Array<number | null> | null; // [Int]
}
NetworkFilter: { // input type
equals?: NexusGenEnums['Network'] | null; // Network
in?: Array<NexusGenEnums['Network'] | null> | null; // [Network]
not?: NexusGenInputs['NetworkFilter'] | null; // NetworkFilter
notIn?: Array<NexusGenEnums['Network'] | null> | null; // [Network]
}
PaymentCrashReasonFilter: { // input type
equals?: NexusGenEnums['PaymentCrashReason'] | null; // PaymentCrashReason
in?: Array<NexusGenEnums['PaymentCrashReason'] | null> | null; // [PaymentCrashReason]
not?: NexusGenInputs['PaymentCrashReasonFilter'] | null; // PaymentCrashReasonFilter
notIn?: Array<NexusGenEnums['PaymentCrashReason'] | null> | null; // [PaymentCrashReason]
}
PaymentCrashWhereUniqueInput: { // input type
id?: number | null; // Int
}
PaymentNetworkHashCompoundUniqueInput: { // input type
hash: string; // String!
network: NexusGenEnums['Network']; // Network!
}
PaymentRelationWhereInput: { // input type
every?: NexusGenInputs['PaymentWhereInput'] | null; // PaymentWhereInput
none?: NexusGenInputs['PaymentWhereInput'] | null; // PaymentWhereInput
some?: NexusGenInputs['PaymentWhereInput'] | null; // PaymentWhereInput
}
PaymentStatusFilter: { // input type
equals?: NexusGenEnums['PaymentStatus'] | null; // PaymentStatus
in?: Array<NexusGenEnums['PaymentStatus'] | null> | null; // [PaymentStatus]
not?: NexusGenInputs['PaymentStatusFilter'] | null; // PaymentStatusFilter
notIn?: Array<NexusGenEnums['PaymentStatus'] | null> | null; // [PaymentStatus]
}
PaymentWhereInput: { // input type
AND?: Array<NexusGenInputs['PaymentWhereInput'] | null> | null; // [PaymentWhereInput]
NOT?: Array<NexusGenInputs['PaymentWhereInput'] | null> | null; // [PaymentWhereInput]
OR?: Array<NexusGenInputs['PaymentWhereInput'] | null> | null; // [PaymentWhereInput]
addressContract?: NexusGenInputs['StringFilter'] | null; // StringFilter
addressFrom?: NexusGenInputs['StringFilter'] | null; // StringFilter
addressTo?: NexusGenInputs['StringFilter'] | null; // StringFilter
at?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
blockNumber?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
createdAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
gas?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
gasPrice?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
hash?: NexusGenInputs['StringFilter'] | null; // StringFilter
network?: NexusGenInputs['NetworkFilter'] | null; // NetworkFilter
status?: NexusGenInputs['PaymentStatusFilter'] | null; // PaymentStatusFilter
tokenDecimals?: NexusGenInputs['IntFilter'] | null; // IntFilter
transactionIndex?: NexusGenInputs['IntFilter'] | null; // IntFilter
updatedAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
value?: NexusGenInputs['DecimalFilter'] | null; // DecimalFilter
}
PaymentWhereUniqueInput: { // input type
network_hash?: NexusGenInputs['PaymentNetworkHashCompoundUniqueInput'] | null; // PaymentNetworkHashCompoundUniqueInput
}
StringFilter: { // input type
contains?: string | null; // String
endsWith?: string | null; // String
equals?: string | null; // String
gt?: string | null; // String
gte?: string | null; // String
in?: Array<string | null> | null; // [String]
lt?: string | null; // String
lte?: string | null; // String
mode?: NexusGenEnums['StringFilterMode'] | null; // StringFilterMode
not?: NexusGenInputs['StringFilter'] | null; // StringFilter
notIn?: Array<string | null> | null; // [String]
startsWith?: string | null; // String
}
}
export interface NexusGenEnums {
Network: "BSC" | "BSCT" | "ETHEREUM" | "GOERLI"
PaymentCrashReason: "FEES_HIGHER_THAN_AMOUNT" | "UNKNOWN"
PaymentStatus: "COMPLETED" | "FAILED" | "PENDING"
StringFilterMode: "default" | "insensitive"
}
export interface NexusGenScalars {
String: string
Int: number
Float: number
Boolean: boolean
ID: string
DateTime: Date
Decimal: Decimal
}
export interface NexusGenObjects {
Deposit: { // root type
addressContract: string; // String!
addressFrom: string; // String!
addressTo: string; // String!
at: NexusGenScalars['DateTime']; // DateTime!
blockNumber: NexusGenScalars['Decimal']; // Decimal!
createdAt: NexusGenScalars['DateTime']; // DateTime!
gas: NexusGenScalars['Decimal']; // Decimal!
gasPrice: NexusGenScalars['Decimal']; // Decimal!
hash: string; // String!
network: NexusGenEnums['Network']; // Network!
tokenDecimals: number; // Int!
transactionIndex: number; // Int!
updatedAt: NexusGenScalars['DateTime']; // DateTime!
value: NexusGenScalars['Decimal']; // Decimal!
}
DepositsConnection: { // root type
edges: NexusGenRootTypes['DepositsConnectionEdges'][]; // [DepositsConnectionEdges!]!
pageInfo: NexusGenRootTypes['ForwardPaginationPageInfo']; // ForwardPaginationPageInfo!
totalCount: number; // Int!
}
DepositsConnectionEdges: { // root type
cursor: string; // String!
node: NexusGenRootTypes['Deposit']; // Deposit!
}
ForwardPaginationPageInfo: { // root type
endCursor: string; // String!
hasNextPage: boolean; // Boolean!
hasPreviousPage: boolean; // Boolean!
startCursor: string; // String!
}
LiquidityProvider: { // root type
id?: string | null; // String
}
Message: { // root type
message: string; // String!
seed: string; // String!
}
Mutation: {};
Payment: { // root type
addressContract?: string | null; // String
addressFrom?: string | null; // String
addressTo?: string | null; // String
at?: NexusGenScalars['DateTime'] | null; // DateTime
blockNumber?: NexusGenScalars['Decimal'] | null; // Decimal
createdAt: NexusGenScalars['DateTime']; // DateTime!
gas?: NexusGenScalars['Decimal'] | null; // Decimal
gasPrice?: NexusGenScalars['Decimal'] | null; // Decimal
hash: string; // String!
network: NexusGenEnums['Network']; // Network!
status: NexusGenEnums['PaymentStatus']; // PaymentStatus!
tokenDecimals?: number | null; // Int
transactionIndex?: number | null; // Int
updatedAt: NexusGenScalars['DateTime']; // DateTime!
value?: NexusGenScalars['Decimal'] | null; // Decimal
}
PaymentCrash: { // root type
id: string; // ID!
reason: NexusGenEnums['PaymentCrashReason']; // PaymentCrashReason!
}
Query: {};
}
export interface NexusGenInterfaces {
}
export interface NexusGenUnions {
}
export type NexusGenRootTypes = NexusGenObjects
export type NexusGenAllTypes = NexusGenRootTypes & NexusGenScalars & NexusGenEnums
export interface NexusGenFieldTypes {
Deposit: { // field return type
addressContract: string; // String!
addressFrom: string; // String!
addressTo: string; // String!
at: NexusGenScalars['DateTime']; // DateTime!
blockNumber: NexusGenScalars['Decimal']; // Decimal!
crashes: NexusGenRootTypes['PaymentCrash'][]; // [PaymentCrash!]!
createdAt: NexusGenScalars['DateTime']; // DateTime!
gas: NexusGenScalars['Decimal']; // Decimal!
gasPrice: NexusGenScalars['Decimal']; // Decimal!
hash: string; // String!
id: string; // ID!
network: NexusGenEnums['Network']; // Network!
payments: NexusGenRootTypes['Payment'][]; // [Payment!]!
tokenDecimals: number; // Int!
transactionIndex: number; // Int!
updatedAt: NexusGenScalars['DateTime']; // DateTime!
value: NexusGenScalars['Decimal']; // Decimal!
}
DepositsConnection: { // field return type
edges: NexusGenRootTypes['DepositsConnectionEdges'][]; // [DepositsConnectionEdges!]!
pageInfo: NexusGenRootTypes['ForwardPaginationPageInfo']; // ForwardPaginationPageInfo!
totalCount: number; // Int!
}
DepositsConnectionEdges: { // field return type
cursor: string; // String!
node: NexusGenRootTypes['Deposit']; // Deposit!
}
ForwardPaginationPageInfo: { // field return type
endCursor: string; // String!
hasNextPage: boolean; // Boolean!
hasPreviousPage: boolean; // Boolean!
startCursor: string; // String!
}
LiquidityProvider: { // field return type
id: string | null; // String
}
Message: { // field return type
message: string; // String!
seed: string; // String!
}
Mutation: { // field return type
signTerms: boolean | null; // Boolean
}
Payment: { // field return type
addressContract: string | null; // String
addressFrom: string | null; // String
addressTo: string | null; // String
at: NexusGenScalars['DateTime'] | null; // DateTime
blockNumber: NexusGenScalars['Decimal'] | null; // Decimal
createdAt: NexusGenScalars['DateTime']; // DateTime!
deposit: NexusGenRootTypes['Deposit']; // Deposit!
gas: NexusGenScalars['Decimal'] | null; // Decimal
gasPrice: NexusGenScalars['Decimal'] | null; // Decimal
hash: string; // String!
id: string; // ID!
network: NexusGenEnums['Network']; // Network!
status: NexusGenEnums['PaymentStatus']; // PaymentStatus!
tokenDecimals: number | null; // Int
transactionIndex: number | null; // Int
updatedAt: NexusGenScalars['DateTime']; // DateTime!
value: NexusGenScalars['Decimal'] | null; // Decimal
}
PaymentCrash: { // field return type
deposit: NexusGenRootTypes['Deposit']; // Deposit!
id: string; // ID!
reason: NexusGenEnums['PaymentCrashReason']; // PaymentCrashReason!
}
Query: { // field return type
bridgeBalance: NexusGenScalars['Decimal']; // Decimal!
deposits: NexusGenRootTypes['DepositsConnection']; // DepositsConnection!
hasSignedTerms: boolean | null; // Boolean
liquidityProviders: NexusGenRootTypes['LiquidityProvider'][]; // [LiquidityProvider!]!
sanityCheck: boolean; // Boolean!
termsMessage: NexusGenRootTypes['Message']; // Message!
tokenCirculatingSupply: NexusGenScalars['Decimal']; // Decimal!
tokenMaxSupply: NexusGenScalars['Decimal']; // Decimal!
}
}
export interface NexusGenFieldTypeNames {
Deposit: { // field return type name
addressContract: 'String'
addressFrom: 'String'
addressTo: 'String'
at: 'DateTime'
blockNumber: 'Decimal'
crashes: 'PaymentCrash'
createdAt: 'DateTime'
gas: 'Decimal'
gasPrice: 'Decimal'
hash: 'String'
id: 'ID'
network: 'Network'
payments: 'Payment'
tokenDecimals: 'Int'
transactionIndex: 'Int'
updatedAt: 'DateTime'
value: 'Decimal'
}
DepositsConnection: { // field return type name
edges: 'DepositsConnectionEdges'
pageInfo: 'ForwardPaginationPageInfo'
totalCount: 'Int'
}
DepositsConnectionEdges: { // field return type name
cursor: 'String'
node: 'Deposit'
}
ForwardPaginationPageInfo: { // field return type name
endCursor: 'String'
hasNextPage: 'Boolean'
hasPreviousPage: 'Boolean'
startCursor: 'String'
}
LiquidityProvider: { // field return type name
id: 'String'
}
Message: { // field return type name
message: 'String'
seed: 'String'
}
Mutation: { // field return type name
signTerms: 'Boolean'
}
Payment: { // field return type name
addressContract: 'String'
addressFrom: 'String'
addressTo: 'String'
at: 'DateTime'
blockNumber: 'Decimal'
createdAt: 'DateTime'
deposit: 'Deposit'
gas: 'Decimal'
gasPrice: 'Decimal'
hash: 'String'
id: 'ID'
network: 'Network'
status: 'PaymentStatus'
tokenDecimals: 'Int'
transactionIndex: 'Int'
updatedAt: 'DateTime'
value: 'Decimal'
}
PaymentCrash: { // field return type name
deposit: 'Deposit'
id: 'ID'
reason: 'PaymentCrashReason'
}
Query: { // field return type name
bridgeBalance: 'Decimal'
deposits: 'DepositsConnection'
hasSignedTerms: 'Boolean'
liquidityProviders: 'LiquidityProvider'
sanityCheck: 'Boolean'
termsMessage: 'Message'
tokenCirculatingSupply: 'Decimal'
tokenMaxSupply: 'Decimal'
}
}
export interface NexusGenArgTypes {
Deposit: {
crashes: { // args
after?: NexusGenInputs['PaymentCrashWhereUniqueInput'] | null; // PaymentCrashWhereUniqueInput
before?: NexusGenInputs['PaymentCrashWhereUniqueInput'] | null; // PaymentCrashWhereUniqueInput
first?: number | null; // Int
last?: number | null; // Int
}
payments: { // args
after?: NexusGenInputs['PaymentWhereUniqueInput'] | null; // PaymentWhereUniqueInput
before?: NexusGenInputs['PaymentWhereUniqueInput'] | null; // PaymentWhereUniqueInput
first?: number | null; // Int
last?: number | null; // Int
}
}
Mutation: {
signTerms: { // args
address: string; // String!
signature: string; // String!
}
}
Query: {
bridgeBalance: { // args
network: NexusGenEnums['Network']; // Network!
}
deposits: { // args
after?: string | null; // String
before?: string | null; // String
first?: number | null; // Int
last?: number | null; // Int
where?: NexusGenInputs['DepositWhereInput'] | null; // DepositWhereInput
}
hasSignedTerms: { // args
address: string; // String!
}
sanityCheck: { // args
network: NexusGenEnums['Network']; // Network!
}
tokenCirculatingSupply: { // args
network: NexusGenEnums['Network']; // Network!
}
tokenMaxSupply: { // args
network: NexusGenEnums['Network']; // Network!
}
}
}
export interface NexusGenAbstractTypeMembers {
}
export interface NexusGenTypeInterfaces {
}
export type NexusGenObjectNames = keyof NexusGenObjects;
export type NexusGenInputNames = keyof NexusGenInputs;
export type NexusGenEnumNames = keyof NexusGenEnums;
export type NexusGenInterfaceNames = never;
export type NexusGenScalarNames = keyof NexusGenScalars;
export type NexusGenUnionNames = never;
export type NexusGenObjectsUsingAbstractStrategyIsTypeOf = never;
export type NexusGenAbstractsUsingStrategyResolveType = never;
export type NexusGenFeaturesConfig = {
abstractTypeStrategies: {
isTypeOf: false
resolveType: true
__typename: false
}
}
export interface NexusGenTypes {
context: MyContextType;
inputTypes: NexusGenInputs;
rootTypes: NexusGenRootTypes;
inputTypeShapes: NexusGenInputs & NexusGenEnums & NexusGenScalars;
argTypes: NexusGenArgTypes;
fieldTypes: NexusGenFieldTypes;
fieldTypeNames: NexusGenFieldTypeNames;
allTypes: NexusGenAllTypes;
typeInterfaces: NexusGenTypeInterfaces;
objectNames: NexusGenObjectNames;
inputNames: NexusGenInputNames;
enumNames: NexusGenEnumNames;
interfaceNames: NexusGenInterfaceNames;
scalarNames: NexusGenScalarNames;
unionNames: NexusGenUnionNames;
allInputTypes: NexusGenTypes['inputNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['scalarNames'];
allOutputTypes: NexusGenTypes['objectNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['unionNames'] | NexusGenTypes['interfaceNames'] | NexusGenTypes['scalarNames'];
allNamedTypes: NexusGenTypes['allInputTypes'] | NexusGenTypes['allOutputTypes']
abstractTypes: NexusGenTypes['interfaceNames'] | NexusGenTypes['unionNames'];
abstractTypeMembers: NexusGenAbstractTypeMembers;
objectsUsingAbstractStrategyIsTypeOf: NexusGenObjectsUsingAbstractStrategyIsTypeOf;
abstractsUsingStrategyResolveType: NexusGenAbstractsUsingStrategyResolveType;
features: NexusGenFeaturesConfig;
}
declare global {
interface NexusGenPluginTypeConfig<TypeName extends string> {
}
interface NexusGenPluginFieldConfig<TypeName extends string, FieldName extends string> {
}
interface NexusGenPluginInputFieldConfig<TypeName extends string, FieldName extends string> {
}
interface NexusGenPluginSchemaConfig {
}
interface NexusGenPluginArgConfig {
}
}