mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 14:06:59 +00:00
23 lines
275 B
TypeScript
23 lines
275 B
TypeScript
const product = {
|
|
type: 'product',
|
|
sv: 'produkt',
|
|
en: 'product'
|
|
}
|
|
|
|
const category = {
|
|
type: 'category',
|
|
'sv': 'kategori',
|
|
'en': 'category'
|
|
}
|
|
|
|
const page = {
|
|
type: 'page',
|
|
'sv': '',
|
|
'en': ''
|
|
}
|
|
|
|
export const localizedTypes = [
|
|
page,
|
|
product,
|
|
category,
|
|
] |