File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2040,7 +2040,7 @@ export class TypedDocumentString<TResult, TVariables>
2040
2040
extends String
2041
2041
implements DocumentTypeDecoration < TResult , TVariables >
2042
2042
{
2043
- __apiType ?: DocumentTypeDecoration < TResult , TVariables > [ '__apiType' ] ;
2043
+ __apiType ?: NonNullable < DocumentTypeDecoration < TResult , TVariables > [ '__apiType' ] > ;
2044
2044
private value : string ;
2045
2045
public __meta__ ?: Record < string , any > | undefined ;
2046
2046
@@ -2050,7 +2050,7 @@ export class TypedDocumentString<TResult, TVariables>
2050
2050
this . __meta__ = __meta__ ;
2051
2051
}
2052
2052
2053
- toString ( ) : string & DocumentTypeDecoration < TResult , TVariables > {
2053
+ override toString ( ) : string & DocumentTypeDecoration < TResult , TVariables > {
2054
2054
return this . value ;
2055
2055
}
2056
2056
}
You can’t perform that action at this time.
0 commit comments