mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
chore(): cleanup return values
Addresses https://github.com/driftyco/ionic-native/issues/38.
This commit is contained in:
@@ -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 }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user