UNPKG

@atomist/automation-client

Version:

Atomist API for software low-level client

8 lines (6 loc) 234 B
import { HandlerContext } from "../../HandlerContext"; import { RepoRef } from "./RepoId"; /** * A function that knows how to find RepoIds from a context */ export type RepoFinder = (context: HandlerContext) => Promise<RepoRef[]>;