262 BTypeScriptView Raw
1/// <reference types="node" />
2/// <reference types="node" />
3import type * as fs from 'node:fs';
4export type Stats = fs.Stats;
5export type ErrnoException = NodeJS.ErrnoException;
6export type AsyncCallback = (error: ErrnoException | null, stats: Stats) => void;