import { UntypedPluginContext, UntypedPluginOptions, UntypedPluginResolvedConfig, UntypedPluginUserConfig } from "./types/plugin.mjs"; import "./types/index.mjs"; import { Plugin } from "powerlines"; //#region src/index.d.ts declare module "powerlines" { interface Config { untyped?: UntypedPluginOptions; } } /** * A Powerlines plugin to use Untyped for code generation based on user-defined schemas. * * @param options - The plugin options. * @returns A Powerlines plugin instance. */ declare const plugin: (options?: UntypedPluginOptions) => Plugin; //#endregion export { UntypedPluginContext, UntypedPluginOptions, UntypedPluginResolvedConfig, UntypedPluginUserConfig, plugin }; //# sourceMappingURL=index.d.mts.map