UNPKG

229 BTypeScriptView Raw
1declare function globbase(basePath?: string): globbase.GlobBaseResult;
2
3declare namespace globbase {
4 interface GlobBaseResult {
5 base: string;
6 isGlob: boolean;
7 glob: string;
8 }
9}
10
11export = globbase;