format-next-pathname-info.d.ts 261 B

1234567
  1. import type { NextPathnameInfo } from './get-next-pathname-info';
  2. interface ExtendedInfo extends NextPathnameInfo {
  3. defaultLocale?: string;
  4. ignorePrefix?: boolean;
  5. }
  6. export declare function formatNextPathnameInfo(info: ExtendedInfo): string;
  7. export {};