feat(): add clipboard plugin

This commit is contained in:
Ibrahim Hadeed 2016-02-17 04:52:00 -05:00
parent fa4c266cb7
commit 0b6cca7a28

View File

@ -36,7 +36,7 @@ export class Clipboard {
* @param text * @param text
* @returns {Promise<T>} * @returns {Promise<T>}
*/ */
@Cordova @Cordova()
static copy(text : string) : Promise<any> { static copy(text : string) : Promise<any> {
return new Promise((res, resj) => {}); return new Promise((res, resj) => {});
} }
@ -45,7 +45,7 @@ export class Clipboard {
* Pastes the text stored in clipboard * Pastes the text stored in clipboard
* @returns {Promise<T>} * @returns {Promise<T>}
*/ */
@Cordova @Cordova()
static paste() : Promise<any> { static paste() : Promise<any> {
return new Promise((res, rej) => {}); return new Promise((res, rej) => {});
} }