mono/packages/fs/dist/utils/matcher.d.ts
2025-01-23 07:22:43 +01:00

7 lines
221 B
TypeScript

export interface IOptions {
matchBase: boolean;
nocomment: boolean;
dot: boolean;
}
export declare function create(basePath: string, patterns: string[], options?: IOptions): (absolutePath: string) => boolean;