UNPKG
enola
Version:
latest (0.4.5)
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
API and CLI for obliterating files and directories
enola
/
build
/
bin
/
nuke.d.ts
9 lines
(8 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
#!/usr/bin/env node
import
{
NukeResult
}
from
"./../system/fs/nuke"
;
import
{
Errors
}
from
"./../system/errors"
;
export
declare
function
timedNuke
(
dir: string
): (
Promise
<{
elapsed
: number;
result
:
NukeResult
; err?:
Errors
; }>);