mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-24 03:00:39 +08:00
11 lines
344 B
TypeScript
11 lines
344 B
TypeScript
|
import { Globber } from './internal-globber';
|
||
|
import { GlobOptions } from './internal-glob-options';
|
||
|
export { Globber, GlobOptions };
|
||
|
/**
|
||
|
* Constructs a globber
|
||
|
*
|
||
|
* @param patterns Patterns separated by newlines
|
||
|
* @param options Glob options
|
||
|
*/
|
||
|
export declare function create(patterns: string, options?: GlobOptions): Promise<Globber>;
|