File size: 200 Bytes
b91e262
 
 
 
 
 
1
2
3
4
5
6
7
import type { Normalizer } from '../normalizer'

export interface PathnameNormalizer extends Normalizer {
  match(pathname: string): boolean
  normalize(pathname: string, matched?: boolean): string
}