chore(): cleanup return values

Addresses https://github.com/driftyco/ionic-native/issues/38.
This commit is contained in:
Tim Lancina
2016-03-10 15:48:20 -06:00
parent 78fdbcd42e
commit 998a58e036
21 changed files with 141 additions and 611 deletions
+2 -6
View File
@@ -37,17 +37,13 @@ export class Clipboard {
* @returns {Promise<T>}
*/
@Cordova()
static copy(text : string) : Promise<any> {
return new Promise((res, resj) => {});
}
static copy(text: string): Promise<any> { return }
/**
* Pastes the text stored in clipboard
* @returns {Promise<T>}
*/
@Cordova()
static paste() : Promise<any> {
return new Promise((res, rej) => {});
}
static paste(): Promise<any> { return }
}