Installation
npm install --save @types/parse-filepath
Summary
This package contains type definitions for parse-filepath (https://github.com/jonschlinkert/parse-filepath).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-filepath.
export = parseFilepath;
declare function parseFilepath(filepath: string): parseFilepath.ParsedPath;
declare namespace parseFilepath {
interface ParsedPath {
root: string;
dir: string;
base: string;
ext: string;
name: string;
extname: string;
basename: string;
dirname: string;
stem: string;
path: string;
absolute: string;
isAbsolute: boolean;
}
}
Additional Details
- Last updated: Tue, 07 Nov 2023 09:09:39 GMT
- Dependencies: none
Credits
These definitions were written by BendingBender.