Sha256: fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e
Contents?: true
Size: 530 Bytes
Versions: 42
Compression:
Stored size: 530 Bytes
Contents
/// <reference types="node" /> import type * as fs from 'fs'; export interface Entry { dirent: Dirent; name: string; path: string; stats?: Stats; } export declare type Stats = fs.Stats; export declare type ErrnoException = NodeJS.ErrnoException; export interface Dirent { isBlockDevice: () => boolean; isCharacterDevice: () => boolean; isDirectory: () => boolean; isFIFO: () => boolean; isFile: () => boolean; isSocket: () => boolean; isSymbolicLink: () => boolean; name: string; }
Version data entries
42 entries across 42 versions & 3 rubygems