@tempfix/watcher
Version:
The file system watcher that strives for perfection, with no native dependencies and optional rename detection support.
18 lines (17 loc) • 418 B
TypeScript
import type { INO, Stats } from './types.js';
declare class WatcherStats {
ino: INO;
size: number;
atimeMs: number;
mtimeMs: number;
ctimeMs: number;
birthtimeMs: number;
_isFile: boolean;
_isDirectory: boolean;
_isSymbolicLink: boolean;
constructor(stats: Stats);
isFile(): boolean;
isDirectory(): boolean;
isSymbolicLink(): boolean;
}
export default WatcherStats;