Skip to content

Commit

Permalink
feat(): add clipboard plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Feb 17, 2016
1 parent fa4c266 commit 0b6cca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/clipboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class Clipboard {
* @param text
* @returns {Promise<T>}
*/
@Cordova
@Cordova()
static copy(text : string) : Promise<any> {
return new Promise((res, resj) => {});
}
Expand All @@ -45,7 +45,7 @@ export class Clipboard {
* Pastes the text stored in clipboard
* @returns {Promise<T>}
*/
@Cordova
@Cordova()
static paste() : Promise<any> {
return new Promise((res, rej) => {});
}
Expand Down

0 comments on commit 0b6cca7

Please sign in to comment.