Skip to content

Commit 90e66c7

Browse files
authored
chore(gatsby): export gatsby graphql TS types (#26548)
1 parent 15d32c0 commit 90e66c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/gatsby/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -817,27 +817,27 @@ export interface GatsbyGraphQLObjectType {
817817
config: ComposeObjectTypeConfig<any, any>
818818
}
819819

820-
interface GatsbyGraphQLInputObjectType {
820+
export interface GatsbyGraphQLInputObjectType {
821821
kind: "INPUT_OBJECT"
822822
config: ComposeInputObjectTypeConfig
823823
}
824824

825-
interface GatsbyGraphQLUnionType {
825+
export interface GatsbyGraphQLUnionType {
826826
kind: "UNION"
827827
config: ComposeUnionTypeConfig<any, any>
828828
}
829829

830-
interface GatsbyGraphQLInterfaceType {
830+
export interface GatsbyGraphQLInterfaceType {
831831
kind: "INTERFACE"
832832
config: ComposeInterfaceTypeConfig<any, any>
833833
}
834834

835-
interface GatsbyGraphQLEnumType {
835+
export interface GatsbyGraphQLEnumType {
836836
kind: "ENUM"
837837
config: ComposeEnumTypeConfig
838838
}
839839

840-
interface GatsbyGraphQLScalarType {
840+
export interface GatsbyGraphQLScalarType {
841841
kind: "SCALAR"
842842
config: ComposeScalarTypeConfig
843843
}

0 commit comments

Comments
 (0)