Skip to content

Instantly share code, notes, and snippets.

@akshitkrnagpal
Created February 22, 2023 00:48
Show Gist options
  • Save akshitkrnagpal/573d1678812dc7a21a368179a13299f2 to your computer and use it in GitHub Desktop.
Save akshitkrnagpal/573d1678812dc7a21a368179a13299f2 to your computer and use it in GitHub Desktop.
Improve typesafety of your next/router
import { NextRouter } from "next/router";
declare module "next/router" {
export type Locale = "en" | "nl" | "de";
export function useRouter(): Omit<NextRouter, "locale" | "locales"> & {
locale: Locale;
locales: Locale[];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment