UNPKG

@atomist/automation-client

Version:

Atomist API for software low-level client

11 lines (8 loc) 213 B
import { ProjectAsync } from "../Project"; /** * Extracts the fingerprint from the project * @param <F> fingerprint format */ export interface Extractor<F> { extract(project: ProjectAsync): Promise<F>; }