UNPKG

@mr-hope/vuepress-utils

Version:
13 lines (12 loc) 600 B
import { Langs, LangPaths, HopeLangI18nConfig, PluginI18nConfig } from "@mr-hope/vuepress-shared"; /** Supported lang codes */ export declare const langs: Langs[]; /** Muti language config for plugins */ export declare const i18n: PluginI18nConfig; export declare const checkLang: (lang: string) => boolean; /** get path from language */ export declare const lang2path: (lang: string) => LangPaths | "/"; /** get language from path */ export declare const path2lang: (path: string) => Langs; /** Get locate of certain language */ export declare const getLocale: (lang: string) => HopeLangI18nConfig;