@keymanapp/kmc
Version:
Keyman Developer compiler command line tools
16 lines • 718 B
TypeScript
import { CompilerCallbacks } from "@keymanapp/developer-utils";
/**
* Replaces each entry starting with `@` with the content of the file, with one
* line per file, filenames trimmed, and any lines that are blank or starting
* with `#` (marking a comment) removed. Note: `#` anywhere else is treated as
* part of the filename.
*
* If any filelist does not exist, reports an error and returns false.
*
* @param filenames
* @param callbacks
* @returns false on failure
*/
export declare function expandFileLists(filenames: string[], callbacks: CompilerCallbacks): boolean;
export declare function expandFileList(filename: string, callbacks: CompilerCallbacks): string[];
//# sourceMappingURL=fileLists.d.ts.map