@starzkg/vuepress-plugin-copy-code
Version:
Copy Code plugin for vuepress
17 lines (16 loc) • 423 B
TypeScript
import type { ResolvedLocaleConfig } from '@starzkg/vuepress-shared';
export interface CopyCodeI18nConfig {
/**
* 复制按钮文字
*
* Copy button label text
*/
copy: string;
/**
* 复制成功提示消息文字
*
* Success message text after content is copied
*/
hint: string;
}
export declare type CopyCodeLocaleConfig = ResolvedLocaleConfig<CopyCodeI18nConfig>;