Skip to content

Commit

Permalink
Parser: fix function definition of parseArguments and parseArgument (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ru4l committed Sep 2, 2021
1 parent caf1949 commit acc468b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/language/parser.d.ts
Expand Up @@ -218,11 +218,11 @@ export class Parser {
/**
* Arguments[Const] : ( Argument[?Const]+ )
*/
parseArguments: Array<ArgumentNode>;
parseArguments(): Array<ArgumentNode>;
/**
* Argument[Const] : Name : Value[?Const]
*/
parseArgument: ArgumentNode;
parseArgument(): ArgumentNode;
/**
* Corresponds to both FragmentSpread and InlineFragment in the spec.
*
Expand Down

0 comments on commit acc468b

Please sign in to comment.