DefinitelyTyped/path-parse/path-parse.d.ts
2016-03-16 22:28:45 -07:00

13 lines
384 B
TypeScript

// Type definitions for path-parse v1.0.5
// Project: https://github.com/jbgutierrez/path-parse
// Definitions by: Dan Chao <http://dchao.co>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../node/node.d.ts"/>
declare module "path-parse" {
import { ParsedPath } from "path";
const parse: (src: string) => ParsedPath;
export = parse;
}