UNPKG

@ehubbell/gitty

Version:

A simple CLI that will fetch, store, and clone Github repos.

13 lines (12 loc) 263 B
interface ConfigService { basePath: string; } declare class ConfigService { constructor(props: { basePath: string; }); setup(): Promise<any>; checkEmpty(): Promise<boolean>; readContents(): Promise<{}>; } export { ConfigService };