We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96e8b53 commit a2169acCopy full SHA for a2169ac
src/type/definition.ts
@@ -555,11 +555,12 @@ export function assertNullableType(type: unknown): GraphQLNullableType {
555
}
556
557
export function getNullableType(type: undefined | null): void;
558
+export function getNullableType<T extends GraphQLNullableOutputType>(
559
+ type: T | GraphQLNonNull<T> | GraphQLSemanticNonNull<T>,
560
+): T;
561
export function getNullableType<T extends GraphQLNullableType>(
- type:
- | T
- | GraphQLNonNull<T>
562
- | GraphQLSemanticNonNull<T extends GraphQLOutputType ? T : never>,
+ // eslint-disable-next-line @typescript-eslint/unified-signatures
563
+ type: T | GraphQLNonNull<T>,
564
): T;
565
export function getNullableType(
566
type: Maybe<GraphQLType>,
0 commit comments