UNPKG

@atomist/sdm-core

Version:

Atomist Software Delivery Machine - Implementation

10 lines 621 B
import { Project, RepoId } from "@atomist/automation-client"; import { GeneratorRegistration } from "@atomist/sdm"; import { UniversalTransform } from "../generatorSupport"; export interface AssertGeneratorResult { id: RepoId; project: Project; parameters: Record<string, any>; } export declare function assertUniversalGenerator(generatorUnderTest: GeneratorRegistration<any>, transformsUnderTest: UniversalTransform<any> | Array<UniversalTransform<any>>, initialParams: Record<string, any>, promptForParams?: Record<string, any>): Promise<AssertGeneratorResult>; //# sourceMappingURL=assertGenerator.d.ts.map