//#region ../@warlock.js/fs/src/write.d.ts /** * Write a UTF-8 string to disk, creating any missing parent directories. */ declare function putFileAsync(filePath: string, content: string): Promise; declare function putFile(filePath: string, content: string): void; /** * Write a JSON-serialisable value to disk (pretty-printed, 2-space indent). */ declare function putJsonFileAsync(filePath: string, value: unknown): Promise; declare function putJsonFile(filePath: string, value: unknown): void; //#endregion export { putFile, putFileAsync, putJsonFile, putJsonFileAsync }; //# sourceMappingURL=write.d.mts.map