From 0b6cca7a286c8b1413c692b2d8cc131d21709209 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Wed, 17 Feb 2016 04:52:00 -0500 Subject: [PATCH] feat(): add clipboard plugin --- src/plugins/clipboard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/clipboard.ts b/src/plugins/clipboard.ts index b97adad2a..d66d8a927 100644 --- a/src/plugins/clipboard.ts +++ b/src/plugins/clipboard.ts @@ -36,7 +36,7 @@ export class Clipboard { * @param text * @returns {Promise} */ - @Cordova + @Cordova() static copy(text : string) : Promise { return new Promise((res, resj) => {}); } @@ -45,7 +45,7 @@ export class Clipboard { * Pastes the text stored in clipboard * @returns {Promise} */ - @Cordova + @Cordova() static paste() : Promise { return new Promise((res, rej) => {}); }