mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-20 17:49:13 +08:00
5 lines
214 B
Text
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 }
|