mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
Unwrap all lone ambient external modules
This commit is contained in:
9
path-parse/path-parse.d.ts
vendored
9
path-parse/path-parse.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user