UNPKG

214 BTypeScriptView Raw
1export type AnymatchFn = (testString: string) => boolean
2export type AnymatchPattern = string | RegExp | AnymatchFn
3type AnymatchMatcher = AnymatchPattern | AnymatchPattern[]
4
5export { AnymatchMatcher as Matcher }