Urara-Blog/node_modules/.pnpm-store/v3/files/55/dab1cd782267ff907ff817b63aec3692469cdf867064502e503e3ed68e0a6ea28b9d8b2222fad1868db86de95444c4a54ea68a9a57d43d4d6576e44270481c
2022-08-14 01:14:53 +08:00

5 lines
214 B
Text

export type AnymatchFn = (testString: string) => boolean
export type AnymatchPattern = string | RegExp | AnymatchFn
type AnymatchMatcher = AnymatchPattern | AnymatchPattern[]
export { AnymatchMatcher as Matcher }