/
var
/
www
/
greso.tech
/
server
/
nsm
/
node_modules
/
@types
/
rimraf
/
/var/www/greso.tech/server/nsm/node_modules/@types/rimraf
mkdir
upload
Name
Size
Mode
Actions
index.d.ts
1994
0755
edit
dl
rm
LICENSE
1141
0755
edit
dl
rm
package.json
1455
0755
edit
dl
rm
README.md
2905
0755
edit
dl
rm
Edit:
/var/www/greso.tech/server/nsm/node_modules/@types/rimraf/index.d.ts
(1994B)
// Type definitions for rimraf 3.0 // Project: https://github.com/isaacs/rimraf // Definitions by: Carlos Ballesteros Velasco <https://github.com/soywiz> // e-cloud <https://github.com/e-cloud> // Ruben Schmidmeister <https://github.com/bash> // Oganexon <https://github.com/oganexon> // Piotr Błażejewicz <https://github.com/peterblazejewicz> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> import glob = require('glob'); import fs = require('fs'); declare function rimraf(path: string, options: rimraf.Options, callback: (error: Error | null | undefined) => void): void; declare function rimraf(path: string, callback: (error: Error | null | undefined) => void): void; declare namespace rimraf { /** * It can remove stuff synchronously, too. * But that's not so good. Use the async API. * It's better. */ function sync(path: string, options?: Options): void; /** * see {@link https://github.com/isaacs/rimraf/blob/79b933fb362b2c51bedfa448be848e1d7ed32d7e/README.md#options} */ interface Options { maxBusyTries?: number | undefined; emfileWait?: number | undefined; /** @default false */ disableGlob?: boolean | undefined; glob?: glob.IOptions | false | undefined; unlink?: typeof fs.unlink | undefined; chmod?: typeof fs.chmod | undefined; stat?: typeof fs.stat | undefined; lstat?: typeof fs.lstat | undefined; rmdir?: typeof fs.rmdir | undefined; readdir?: typeof fs.readdir | undefined; unlinkSync?: typeof fs.unlinkSync | undefined; chmodSync?: typeof fs.chmodSync | undefined; statSync?: typeof fs.statSync | undefined; lstatSync?: typeof fs.lstatSync | undefined; rmdirSync?: typeof fs.rmdirSync | undefined; readdirSync?: typeof fs.readdirSync | undefined; } } export = rimraf;
Save
cmd:
run