Skip to content

Commit 6353cf6

Browse files
committed
Regenerate graphql.ts
1 parent 6540d3f commit 6353cf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/gql/graphql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,7 +2040,7 @@ export class TypedDocumentString<TResult, TVariables>
20402040
extends String
20412041
implements DocumentTypeDecoration<TResult, TVariables>
20422042
{
2043-
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
2043+
__apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
20442044
private value: string;
20452045
public __meta__?: Record<string, any> | undefined;
20462046

@@ -2050,7 +2050,7 @@ export class TypedDocumentString<TResult, TVariables>
20502050
this.__meta__ = __meta__;
20512051
}
20522052

2053-
toString(): string & DocumentTypeDecoration<TResult, TVariables> {
2053+
override toString(): string & DocumentTypeDecoration<TResult, TVariables> {
20542054
return this.value;
20552055
}
20562056
}

0 commit comments

Comments
 (0)