Skip to content

Commit 501b665

Browse files
Flow: Remove inferrable types (#3096)
1 parent e94c2fa commit 501b665

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/__testUtils__/kitchenSinkSDL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const kitchenSinkSDL: string = `
1+
export const kitchenSinkSDL = `
22
"""This is a description of the schema as a whole."""
33
schema {
44
query: QueryType

src/jsutils/__tests__/toObjMap-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { ObjMapLike } from '../ObjMap';
55
import { toObjMap } from '../toObjMap';
66

77
// Workaround to make both ESLint and Flow happy
8-
const __proto__: string = '__proto__';
8+
const __proto__ = '__proto__';
99

1010
describe('toObjMap', () => {
1111
it('convert empty object to ObjMap', () => {

0 commit comments

Comments
 (0)