/** * Параметры пути. Не типизированные * @example * ```ts * // /user/:id -> /user/123 * router.routeParams.id; // '123' * router.routeParams.name; // undefined * ``` */ export type RawRouteParams = Record;