15 lines
209 B
TypeScript
15 lines
209 B
TypeScript
export interface CopyCodePluginLocaleData {
|
|
/**
|
|
* Copy text
|
|
*
|
|
* 复制文字
|
|
*/
|
|
copy: string;
|
|
/**
|
|
* Copied text
|
|
*
|
|
* 已复制文字
|
|
*/
|
|
copied: string;
|
|
}
|