//#region ../@warlock.js/fs/src/dirs.d.ts /** * Ensure a directory exists (recursively creating parents). * Idempotent — no error if the directory already exists. */ declare function ensureDirectoryAsync(path: string): Promise; declare function ensureDirectory(path: string): void; //#endregion export { ensureDirectory, ensureDirectoryAsync }; //# sourceMappingURL=dirs.d.mts.map