/** * Re-export RouterAdapter from mizan/client. * * Allauth extends this with a required getParam method. */ import type { RouterAdapter as BaseRouterAdapter } from 'mizan/client' export interface RouterAdapter extends BaseRouterAdapter { /** Get a specific route param (e.g., from /auth/[...path]) - required for allauth */ getParam: (name: string) => string | string[] | undefined }