7 lines
233 B
Plaintext
7 lines
233 B
Plaintext
import { Normalizer } from './normalizer';
|
|
export declare class PrefixingNormalizer implements Normalizer {
|
|
private readonly prefix;
|
|
constructor(...prefixes: ReadonlyArray<string>);
|
|
normalize(pathname: string): string;
|
|
}
|