UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

19 lines 636 B
import { File } from "@atomist/automation-client/lib/project/File"; import { GitProject } from "@atomist/automation-client/lib/project/git/GitProject"; /** * Watches the provided paths for changes when in watch mode */ export declare function watchPaths(paths: string[]): void; /** * Recursively camelCase the provide object */ export declare function camelCase(obj: any): any; export declare function getYamlFile<D = any>(project: GitProject, name?: string, options?: { parse: boolean; camelCase: boolean; }): Promise<{ file: File; content: string; docs?: D[]; } | undefined>; //# sourceMappingURL=util.d.ts.map