Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
sasurau4 committed Jul 15, 2020
1 parent 97574db commit 482d384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby/src/schema/types/derived-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const getDerivedTypes = ({
typeComposer,
}: {
typeComposer: AllTypeComposer
}): any => typeComposer.getExtension(`derivedTypes`) || new Set()
}): Set<string> => typeComposer.getExtension(`derivedTypes`) || new Set()

export const clearDerivedTypes = ({
schemaComposer,
Expand Down

0 comments on commit 482d384

Please sign in to comment.