UNPKG

469 BTypeScriptView Raw
1// Type definitions for glob-base 0.3
2// Project: https://github.com/jonschlinkert/glob-base
3// Definitions by: Alan Agius <https://github.com/alan-agius4>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare function globbase(basePath?: string): globbase.GlobBaseResult;
7
8declare namespace globbase {
9 interface GlobBaseResult {
10 base: string;
11 isGlob: boolean;
12 glob: string;
13 }
14}
15
16export = globbase;