//#region ../@warlock.js/fs/src/read.d.ts /** * Read a file as UTF-8 text. */ declare function getFileAsync(path: string): Promise; declare function getFile(path: string): string; /** * Read a JSON file and parse it. * * @throws if the file does not exist or contains invalid JSON. */ declare function getJsonFileAsync(path: string): Promise; declare function getJsonFile(path: string): T; //#endregion export { getFile, getFileAsync, getJsonFile, getJsonFileAsync }; //# sourceMappingURL=read.d.mts.map