import type { IgnitionModuleBuilder } from "./types/module-builder.js"; import type { IgnitionModule, IgnitionModuleResult } from "./types/module.js"; /** * Construct a module definition that can be deployed through Ignition. * * @param moduleId - the id of the module * @param moduleDefinitionFunction - a function accepting the * IgnitionModuleBuilder to configure the deployment * @returns a module definition * * @beta */ export declare function buildModule>(moduleId: ModuleIdT, moduleDefinitionFunction: (m: IgnitionModuleBuilder) => IgnitionModuleResultsT): IgnitionModule; //# sourceMappingURL=build-module.d.ts.map