UNPKG

dirent-from-stats

Version:

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

4 lines (2 loc) 111 B
import type { BigIntStats, Dirent, Stats } from 'fs'; export type DirentStats = Stats | BigIntStats | Dirent;