mono/packages/commons/dist/glob-base.d.ts
2025-01-24 20:47:57 +01:00

14 lines
321 B
TypeScript

/*!
* glob-base <https://github.com/jonschlinkert/glob-base>
*
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
*/
interface GlobBaseResult {
base: string;
isGlob: boolean;
glob: string;
}
export declare const globBase: (pattern: string) => GlobBaseResult;
export {};