UNPKG

vite

Version:

Native-ESM powered web dev build tool

6 lines (4 loc) 214 B
export type AnymatchFn = (testString: string) => boolean export type AnymatchPattern = string | RegExp | AnymatchFn type AnymatchMatcher = AnymatchPattern | AnymatchPattern[] export { AnymatchMatcher as Matcher }