Skip to content

Commit a2169ac

Browse files
committed
Simpler type
1 parent 96e8b53 commit a2169ac

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/type/definition.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -555,11 +555,12 @@ export function assertNullableType(type: unknown): GraphQLNullableType {
555555
}
556556

557557
export function getNullableType(type: undefined | null): void;
558+
export function getNullableType<T extends GraphQLNullableOutputType>(
559+
type: T | GraphQLNonNull<T> | GraphQLSemanticNonNull<T>,
560+
): T;
558561
export function getNullableType<T extends GraphQLNullableType>(
559-
type:
560-
| T
561-
| GraphQLNonNull<T>
562-
| GraphQLSemanticNonNull<T extends GraphQLOutputType ? T : never>,
562+
// eslint-disable-next-line @typescript-eslint/unified-signatures
563+
type: T | GraphQLNonNull<T>,
563564
): T;
564565
export function getNullableType(
565566
type: Maybe<GraphQLType>,

0 commit comments

Comments
 (0)