Unwrap all lone ambient external modules

This commit is contained in:
Ryan Cavanaugh
2016-04-22 14:12:45 -07:00
parent fa7a5ddc9b
commit 4a433abbf4
616 changed files with 74328 additions and 75201 deletions

View File

@@ -5,8 +5,7 @@
/// <reference path="../node/node.d.ts"/>
declare module "path-parse" {
import { ParsedPath } from "path";
const parse: (src: string) => ParsedPath;
export = parse;
}
import { ParsedPath } from "path";
declare const parse: (src: string) => ParsedPath;
export = parse;