UNPKG

as2dts

Version:

A command line tool that converts ActionScript 3 classes and interfaces to TypeScript definitions (d.ts files)

17 lines (14 loc) 557 B
// Type definitions for rimraf // Project: https://github.com/isaacs/rimraf // Definitions by: Carlos Ballesteros Velasco <https://github.com/soywiz> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Imported from: https://github.com/soywiz/typescript-node-definitions/rimraf.d.ts declare module "rimraf" { function rimraf(path: string, callback: (error: Error) => void): void; namespace rimraf { export function sync(path: string): void; export var EMFILE_MAX: number; export var BUSYTRIES_MAX: number; } export = rimraf; }