@ehubbell/gitty
Version:
A simple CLI that will fetch, store, and clone Github repos.
10 lines (9 loc) • 685 B
TypeScript
export declare const checkOrCreateFile: (pathName: any, fileName: any) => Promise<any>;
export declare const createFile: (pathName: any, fileName: any) => Promise<any>;
export declare const readFile: (filePath: any, encoding?: string) => Promise<any>;
export declare const checkPath: (pathName: string) => Promise<any>;
export declare const createPath: (pathName: any) => Promise<any>;
export declare const checkOrCreatePath: (pathName: string) => Promise<any>;
export declare const fileStats: (filePath: string) => Promise<any>;
export declare const removePath: (pathName: string) => Promise<void>;
export declare const writeFile: (filePath: string, content: Buffer) => Promise<any>;