UNPKG
chmodrp
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
`chmod -R` with the Promise API
github.com/leonzalion/chmodrp
leonzalion/chmodrp
chmodrp
/
utils
/
chmodr.d.ts
5 lines
(4 loc)
•
219 B
TypeScript
View Raw
1
2
3
4
5
/// <reference types="node" />
import
*
as
fs
from
'node:fs'
;
export
declare
function
chmodr
(
entryPath
:
string
,
mode
: fs.
Mode
):
Promise
<
void
>;
export
declare
function
chmodrSync
(
entryPath
:
string
,
mode
: fs.
Mode
):
void
;