UNPKG
foalts2-cli
Version:
latest (2.12.0)
2.12.0
CLI tool for FoalTS
github.com/FoalTS
FoalTS/foal
foalts2-cli
/
lib
/
rmdir
/
rmdir.util.d.ts
9 lines
(8 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Remove a directory and all its contents, including any subdirectories and files. * *
@export
*
@param
{
string
}
path
- The path of the directory *
@returns
{
Promise<void>
} */
export
declare
function
rmdir
(
path
:
string
):
Promise
<
void
>;