mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +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>;
|