Rename folders since the template package generator now creates a package for "dotnet new" as well as Yeoman

This commit is contained in:
SteveSandersonMS
2016-08-18 10:58:04 -07:00
parent 1019026943
commit d928ef4f12
22 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
// 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;
}