UNPKG
@nodelib/fs.walk
Version:
latest (3.0.1)
3.0.1
3.0.0
2.0.0
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
A library for efficiently walking a directory recursively
nodelib/nodelib
@nodelib/fs.walk
/
out
/
types
/
index.d.ts
9 lines
(8 loc)
•
251 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/// <reference types="node" />
import
type
*
as
scandir
from
'@nodelib/fs.scandir'
;
export
declare
type
Entry
= scandir.
Entry
;
export
declare
type
Errno
=
NodeJS
.
ErrnoException
;
export
interface
QueueItem
{
directory
:
string
;
base
?:
string
; }