import { Source } from "@graphql-tools/utils"; import { LoadSchemaOptions, LoadTypedefsOptions, UnnormalizedTypeDefPointer } from "@graphql-tools/load"; //#region src/types/loader.d.ts /** * Options for loading GraphQL schemas */ type GraphQLLoadSchemaOptions = Partial; /** * Options for loading GraphQL documents */ type GraphQLLoadDocumentsOptions = Partial; /** * Type definition pointer for GraphQL schemas */ type GraphQLTypeDefPointer = UnnormalizedTypeDefPointer | UnnormalizedTypeDefPointer[]; /** * GraphQL source document */ type GraphQLSource = Source; //#endregion export { GraphQLLoadDocumentsOptions, GraphQLLoadSchemaOptions, GraphQLSource, GraphQLTypeDefPointer };