UNPKG

@atomist/sdm-core

Version:

Atomist Software Delivery Machine - Implementation

11 lines 388 B
import { Project } from "@atomist/automation-client"; export interface ProjectIdentification { name: string; version: string; } /** * Return identification of this project or undefined if it can't be identified * @ModuleExport */ export declare type ProjectIdentifier = (p: Project) => Promise<ProjectIdentification | undefined>; //# sourceMappingURL=projectIdentifier.d.ts.map