Skip to content

Commit

Permalink
Update types in ast.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Apr 2, 2024
1 parent bb7c523 commit 198bbdc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,12 @@ export type FragmentSpreadNode = Or<
{
readonly kind: Kind.FRAGMENT_SPREAD;
readonly name: NameNode;
readonly arguments?: ReadonlyArray<ArgumentNode>;
readonly directives?: ReadonlyArray<DirectiveNode>;
readonly loc?: Location;
}
>;
> & {
readonly arguments?: ReadonlyArray<ArgumentNode>;
};

export type InlineFragmentNode = Or<
GraphQL.InlineFragmentNode,
Expand Down

0 comments on commit 198bbdc

Please sign in to comment.