1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00
Files
.profile/packages/i18n/src/messages.d.ts

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
}
}