UNPKG

343 BTypeScriptView Raw
1// Type definitions for path-parse v1.0.5
2// Project: https://github.com/jbgutierrez/path-parse
3// Definitions by: Dan Chao <http://dchao.co>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node"/>
7
8
9import { ParsedPath } from "path";
10declare const parse: (src: string) => ParsedPath;
11export = parse;