mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import it from './messages/it.json';
|
|
|
|
type Messages = typeof it;
|
|
|
|
declare global {
|
|
// Use type safe message keys with `next-intl`
|
|
interface IntlMessages extends Messages {}
|
|
}
|