DefinitelyTyped/types/path-parse/index.d.ts
2017-03-24 14:27:52 -07:00

12 lines
343 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 types="node"/>
import { ParsedPath } from "path";
declare const parse: (src: string) => ParsedPath;
export = parse;