mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
384 B
TypeScript
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;
|
|
}
|