Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
11
node_modules/next/dist/server/normalizers/normalizers.d.ts
generated
vendored
Normal file
11
node_modules/next/dist/server/normalizers/normalizers.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import type { Normalizer } from './normalizer';
|
||||
/**
|
||||
* Normalizers combines many normalizers into a single normalizer interface that
|
||||
* will normalize the inputted pathname with each normalizer in order.
|
||||
*/
|
||||
export declare class Normalizers implements Normalizer {
|
||||
private readonly normalizers;
|
||||
constructor(normalizers?: Array<Normalizer>);
|
||||
push(normalizer: Normalizer): void;
|
||||
normalize(pathname: string): string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue