File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export class Lexer {
75
75
/**
76
76
* @internal
77
77
*/
78
- export function isPunctuatorTokenKind ( kind : TokenKindEnum ) : boolean % checks {
78
+ export function isPunctuatorTokenKind ( kind : TokenKindEnum ) : boolean {
79
79
return (
80
80
kind === TokenKind . BANG ||
81
81
kind === TokenKind . DOLLAR ||
Original file line number Diff line number Diff line change @@ -999,7 +999,7 @@ export type GraphQLArgument = {
999
999
astNode : ?InputValueDefinitionNode ,
1000
1000
} ;
1001
1001
1002
- export function isRequiredArgument ( arg : GraphQLArgument ) : boolean % checks {
1002
+ export function isRequiredArgument ( arg : GraphQLArgument ) : boolean {
1003
1003
return isNonNullType ( arg . type ) && arg . defaultValue === undefined ;
1004
1004
}
1005
1005
@@ -1593,9 +1593,7 @@ export type GraphQLInputField = {
1593
1593
astNode : ?InputValueDefinitionNode ,
1594
1594
} ;
1595
1595
1596
- export function isRequiredInputField (
1597
- field : GraphQLInputField ,
1598
- ) : boolean % checks {
1596
+ export function isRequiredInputField ( field : GraphQLInputField ) : boolean {
1599
1597
return isNonNullType ( field . type ) && field . defaultValue === undefined ;
1600
1598
}
1601
1599
You can’t perform that action at this time.
0 commit comments