@coat/cli
Version:
TODO: See #3
10 lines (9 loc) • 324 B
TypeScript
/**
* Returns the disk content for the given file paths if they exist.
* If a file does not exist, the value for the path will be undefined.
*
* @param filePaths The files that shall be retrieved
*/
export declare function getCurrentFiles(filePaths: string[]): Promise<{
[filePath: string]: string | undefined;
}>;