mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-05-29 22:37:44 +02:00
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import type { routing } from "./routing.ts"
|
|
import type messages from "./translations/en-US.json"
|
|
|
|
declare module "next-intl" {
|
|
interface AppConfig {
|
|
Locale: (typeof routing.locales)[number]
|
|
Messages: typeof messages
|
|
}
|
|
}
|