DefinitelyTyped/types/glob-base/index.d.ts
Andy 511af76fa4 Move packages from root to types (#15953)
* Move files

* Fix lint and remove node-jose
2017-04-18 08:02:41 -07:00

17 lines
453 B
TypeScript

// Type definitions for glob-base 0.3
// Project: https://github.com/jonschlinkert/glob-base
// Definitions by: Alan Agius <https://github.com/alan-agius4>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function globbase(basePath?: string): globbase.GlobBaseResult;
declare namespace globbase {
interface GlobBaseResult {
base: string;
isGlob: boolean;
glob: string;
}
}
export = globbase;