17 lines
361 B
TypeScript
17 lines
361 B
TypeScript
import type { ExactLocaleConfig } from '@vuepress/helper/shared';
|
|
export interface CopyCodePluginLocaleData {
|
|
/**
|
|
* Copy text
|
|
*
|
|
* 复制文字
|
|
*/
|
|
copy: string;
|
|
/**
|
|
* Copied text
|
|
*
|
|
* 已复制文字
|
|
*/
|
|
copied: string;
|
|
}
|
|
export type CopyCodePluginLocaleConfig = ExactLocaleConfig<CopyCodePluginLocaleData>;
|