mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
/**
|
|
* Makes sure that all passed files exist.
|
|
*
|
|
* Filenames are expected to be absolute.
|
|
*
|
|
* If a file is not found, prints a warning message and returns `false`.
|
|
*/
|
|
declare function checkRequiredFiles(files: ReadonlyArray<string>): boolean;
|
|
export = checkRequiredFiles;
|