-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.d.ts
24 lines (19 loc) · 792 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {type MinimatchOptions} from 'minimatch';
export type Options = Readonly<MinimatchOptions>;
/**
Extends [`minimatch.match()`](https://github.com/isaacs/minimatch#minimatchmatchlist-pattern-options) with support for multiple patterns.
@param paths - The paths to match against.
@param patterns - Globbing patterns to use. For example: `['*', '!cake']`. See supported [`minimatch` patterns](https://github.com/isaacs/minimatch#usage).
@returns The matching paths in the order of input paths.
@example
```
import multimatch from 'multimatch';
multimatch(['unicorn', 'cake', 'rainbows'], ['*', '!cake']);
//=> ['unicorn', 'rainbows']
```
*/
export default function multimatch(
paths: string | readonly string[],
patterns: string | readonly string[],
options?: Options
): string[];