UNPKG

273 BTypeScriptView Raw
1/**
2 * Makes sure that all passed files exist.
3 *
4 * Filenames are expected to be absolute.
5 *
6 * If a file is not found, prints a warning message and returns `false`.
7 */
8declare function checkRequiredFiles(files: readonly string[]): boolean;
9export = checkRequiredFiles;