Skip to content

Commit 61a23e8

Browse files
committed
Fix JSON scalars typings #104
1 parent 2888d91 commit 61a23e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

types/graphql-type-json.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
declare module "graphql-type-json" {
22
import { GraphQLScalarType } from "graphql";
3-
export const GraphQLJSON: typeof GraphQLScalarType;
4-
export const GraphQLJSONObject: typeof GraphQLScalarType;
5-
}
3+
export const GraphQLJSON: GraphQLScalarType;
4+
export const GraphQLJSONObject: GraphQLScalarType;
5+
}

0 commit comments

Comments
 (0)