UNPKG

dirent-from-stats

Version:

Create fs.Dirents from fs.Stats for compatiblity on earlier versions of Node.js

3 lines (2 loc) 107 B
import type { BigIntStats, Dirent, Stats } from 'fs'; export type AnyStats = Stats | BigIntStats | Dirent;