//#region ../@warlock.js/fs/src/stats.d.ts /** * Get last-modified time of a path. Returns a Date. * * @throws if the path does not exist. */ declare function lastModifiedAsync(path: string): Promise; declare function lastModified(path: string): Date; /** * Return raw fs.Stats for a path. */ declare function statsAsync(path: string): Promise; declare function stats(path: string): any; //#endregion export { lastModified, lastModifiedAsync, stats, statsAsync }; //# sourceMappingURL=stats.d.mts.map