12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- declare namespace matcher {
- interface Options {
-
- readonly caseSensitive?: boolean;
- }
- }
- declare const matcher: {
-
- (inputs: readonly string[], patterns: readonly string[], options?: matcher.Options): string[];
-
- isMatch: (input: string | readonly string[], pattern: string | readonly string[], options?: matcher.Options) => boolean;
- };
- export = matcher;
|