import { CodeFileLoaderConfig } from "@graphql-tools/code-file-loader"; import { Loader } from "@graphql-tools/utils"; //#region src/loaders.d.ts /** * Creates the schema loaders used by GraphQL Code Generator. * * @see https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/src/load.ts * * @param config - The configuration for the code file loader. * @returns The schema loaders. */ declare function createSchemaLoaders(config?: CodeFileLoaderConfig): Loader[]; //#endregion export { createSchemaLoaders }; //# sourceMappingURL=loaders.d.mts.map