bpms_site/.svn/pristine/b2/b231f52b686bc0b764ec45bc2c900cd6fca755fc.svn-base
2025-11-02 16:38:49 +03:30

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;
}