UNPKG

@nodelib/fs.stat

Version:

Get the status of a file with some features

5 lines (4 loc) 200 B
import type * as fs from 'node:fs'; export type Stats = fs.Stats; export type ErrnoException = NodeJS.ErrnoException; export type AsyncCallback = (error: ErrnoException | null, stats: Stats) => void;