智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/bb/bbdf7de5e2a9d75854d35fca88f...

51 lines
1003 B

/**
* @file 剪贴板
*/
declare namespace my {
interface IClipboardOptions {
/**
* 调用成功的回调函数
*/
success?(res: { text: string }): void;
/**
* 调用失败的回调函数
*/
fail?(): void;
/**
* 调用结束的回调函数(调用成功、失败都会执行)
*/
complete?(res: { text: string }): void;
}
interface ISetClipboardOptions {
/**
* 剪贴板内容
*/
text: string;
/**
* 调用失败的回调函数
*/
fail?(): void;
/**
* 调用结束的回调函数(调用成功、失败都会执行)
*/
complete?(res: { success: boolean }): void;
/**
* 调用成功的回调函数
*/
success?: (res: { success: boolean }) => void;
}
/**
* 获取剪贴板数据。
*/
function getClipboard(options: IClipboardOptions): void;
/**
* 设置剪贴板数据。
*/
function setClipboard(options: ISetClipboardOptions): void;
}