import { GraphQLPluginContext, GraphQLPluginOptions, GraphQLPluginResolvedConfig, GraphQLPluginUserConfig, PowerPlantGraphQLCodegenOptions } from "./types/plugin.cjs"; import "./types/index.cjs"; import { Plugin } from "powerlines"; //#region src/index.d.ts declare module "powerlines" { interface Config { graphql?: GraphQLPluginOptions; } } /** * A Powerlines plugin to integrate GraphQL Codegen via Power Plant. * * @see https://the-guild.dev/graphql/codegen * @see https://github.com/storm-software/power-plant/tree/main/packages/generators/graphql-codegen * * @param options - The plugin options. * @returns Powerlines plugin instances. */ declare const plugin: (options?: GraphQLPluginOptions) => Plugin[]; //#endregion export { GraphQLPluginContext, GraphQLPluginOptions, GraphQLPluginResolvedConfig, GraphQLPluginUserConfig, type PowerPlantGraphQLCodegenOptions, plugin }; //# sourceMappingURL=index.d.cts.map