Installation
npm install --save @types/parse-glob
Summary
This package contains type definitions for parse-glob (https://github.com/jonschlinkert/parse-glob).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-glob.
declare namespace parseGlob {
interface Result {
orig: string;
is: {
glob: boolean;
negated: boolean;
extglob: boolean;
braces: boolean;
brackets: boolean;
globstar: boolean;
dotfile: boolean;
dotdir: boolean;
};
glob: string;
base: string;
path: {
dirname: string;
basename: string;
filename: string;
extname: string;
ext: string;
};
}
}
interface ParseGlob {
(glob: string): parseGlob.Result;
}
declare const parseGlob: ParseGlob;
export = parseGlob;
Additional Details
- Last updated: Tue, 07 Nov 2023 09:09:39 GMT
- Dependencies: none
Credits
These definitions were written by glen-84.