Skip to content

Commit

Permalink
Flow: Remove inferrable types (#3096)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 16, 2021
1 parent e94c2fa commit 501b665
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__testUtils__/kitchenSinkSDL.js
@@ -1,4 +1,4 @@
export const kitchenSinkSDL: string = `
export const kitchenSinkSDL = `
"""This is a description of the schema as a whole."""
schema {
query: QueryType
Expand Down
2 changes: 1 addition & 1 deletion src/jsutils/__tests__/toObjMap-test.js
Expand Up @@ -5,7 +5,7 @@ import type { ObjMapLike } from '../ObjMap';
import { toObjMap } from '../toObjMap';

// Workaround to make both ESLint and Flow happy
const __proto__: string = '__proto__';
const __proto__ = '__proto__';

describe('toObjMap', () => {
it('convert empty object to ObjMap', () => {
Expand Down

0 comments on commit 501b665

Please sign in to comment.