AppRouterPageRouteOpts: {
    params?: Record<string, string | string[]>;
    searchParams?: {
        [key: string]: string | string[] | undefined;
    };
}

Objects containing the route parameters and search parameters of th page.

Type declaration

  • Optional params?: Record<string, string | string[]>
  • Optional searchParams?: {
        [key: string]: string | string[] | undefined;
    }
    • [key: string]: string | string[] | undefined