We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94c2fa commit 501b665Copy full SHA for 501b665
src/__testUtils__/kitchenSinkSDL.js
@@ -1,4 +1,4 @@
1
-export const kitchenSinkSDL: string = `
+export const kitchenSinkSDL = `
2
"""This is a description of the schema as a whole."""
3
schema {
4
query: QueryType
src/jsutils/__tests__/toObjMap-test.js
@@ -5,7 +5,7 @@ import type { ObjMapLike } from '../ObjMap';
5
import { toObjMap } from '../toObjMap';
6
7
// Workaround to make both ESLint and Flow happy
8
-const __proto__: string = '__proto__';
+const __proto__ = '__proto__';
9
10
describe('toObjMap', () => {
11
it('convert empty object to ObjMap', () => {
0 commit comments