UNPKG

@nodelib/fs.stat

Version:

Get the status of a file with some features

7 lines (6 loc) 262 B
/// <reference types="node" /> /// <reference types="node" /> 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;