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