Skip to content

Commit

Permalink
fix(gatsby): fix types for printTypeDefinitions action (#37647)
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed Feb 13, 2023
1 parent 7dfef03 commit bc6c3ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/gatsby/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1461,10 +1461,12 @@ export interface Actions {

printTypeDefinitions(
this: void,
path?: string,
include?: { types?: Array<string>; plugins?: Array<string> },
exclude?: { types?: Array<string>; plugins?: Array<string> },
withFieldTypes?: boolean,
options: {
path?: string
include?: { types?: Array<string>; plugins?: Array<string> }
exclude?: { types?: Array<string>; plugins?: Array<string> }
withFieldTypes?: boolean
},
plugin?: ActionPlugin,
traceId?: string
): void
Expand Down

0 comments on commit bc6c3ef

Please sign in to comment.