mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import type { Langs, Locale } from '../types.js'
|
|
import { en } from './en.js'
|
|
import { zh } from './zh.js'
|
|
|
|
export const locales: Record<Langs, Locale> = {
|
|
'zh-CN': zh,
|
|
'en-US': en,
|
|
}
|