16 lines
429 B
TypeScript
16 lines
429 B
TypeScript
import type { ExactLocaleConfig } from '@vuepress/helper/client';
|
|
import type { ComputedRef } from 'vue';
|
|
import type { GitLocaleData } from '../../shared/index.js';
|
|
/**
|
|
* Git plugin locales
|
|
*
|
|
* Git 插件多语言配置
|
|
*/
|
|
export declare const locales: ExactLocaleConfig<GitLocaleData>;
|
|
/**
|
|
* Git locale composable
|
|
*
|
|
* Git 多语言组合式函数
|
|
*/
|
|
export declare const useGitLocale: () => ComputedRef<GitLocaleData>;
|