UNPKG

@types/rmfr

Version:
31 lines (23 loc) 923 B
# Installation > `npm install --save @types/rmfr` # Summary This package contains type definitions for rmfr (https://github.com/shinnn/rmfr#readme). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rmfr. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rmfr/index.d.ts) ````ts import rimraf = require("rimraf"); declare namespace rmfr { type Options = rimraf.Options & { glob?: rimraf.Options["glob"] | true | undefined; disableGlob?: never | undefined; }; } declare function rmfr(path: string, options?: rmfr.Options): Promise<void>; export = rmfr; ```` ### Additional Details * Last updated: Tue, 07 Nov 2023 15:11:36 GMT * Dependencies: [@types/rimraf](https://npmjs.com/package/@types/rimraf) # Credits These definitions were written by [Alan Plum](https://github.com/pluma).