Skip to content

Commit

Permalink
revert: add back deleted code
Browse files Browse the repository at this point in the history
  • Loading branch information
wxiaoyun committed Aug 10, 2024
1 parent ecdaea8 commit adfff79
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/rspack/src/util/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,24 @@ interface IDirent {
isFIFO: () => boolean;
isSocket: () => boolean;
name: string | Buffer;
dev: number | bigint;
ino: number | bigint;
mode: number | bigint;
nlink: number | bigint;
uid: number | bigint;
gid: number | bigint;
rdev: number | bigint;
size: number | bigint;
blksize: number | bigint;
blocks: number | bigint;
atimeMs: number | bigint;
mtimeMs: number | bigint;
ctimeMs: number | bigint;
birthtimeMs: number | bigint;
atime: Date;
mtime: Date;
ctime: Date;
birthtime: Date;
}

export interface OutputFileSystem {
Expand Down

0 comments on commit adfff79

Please sign in to comment.