mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-01 20:29:03 +02:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import "next-intl";
|
|
|
|
import enMessages from "../messages/en.json";
|
|
|
|
import { routing } from "./routing";
|
|
|
|
declare module "next-intl" {
|
|
interface AppConfig {
|
|
Locale: (typeof routing.locales)[number];
|
|
Messages: typeof enMessages;
|
|
}
|
|
} |