50 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-02-17 04:49:26 -05:00
import {Plugin, Cordova} from './plugin';
/**
* @name Clipboard
* @description
2016-02-17 04:49:26 -05:00
* Clipboard management plugin for Cordova that supports iOS, Android, and Windows Phone 8.
*
* Requires Cordova plugin: https://github.com/VersoSolutions/CordovaClipboard
2016-03-04 15:42:21 -06:00
* For more info, please see the [Clipboard plugin docs](https://github.com/VersoSolutions/CordovaClipboard.git).
2016-02-17 04:49:26 -05:00
*
* @usage
* ```js
* Clipboard.copy("Hello world");
*
* Clipboard.paste().then(
* (resolve : string) => {
* alert(resolve);
* },
* (reject : string) => {
* alert("Error: " + reject);
* }
* );
* );
* ```
*/
@Plugin({
2016-03-04 15:42:21 -06:00
plugin: 'https://github.com/VersoSolutions/CordovaClipboard.git',
2016-03-12 19:08:47 -05:00
pluginRef: 'cordova.plugins.clipboard',
2016-03-14 13:38:35 -04:00
repo: 'https://github.com/VersoSolutions/CordovaClipboard',
platforms: ['Amazon Fire OS', 'iOS', 'Android', 'BlackBerry 10', 'Windows Phone 7', 'Windows Phone 8', 'Windows', 'Firefox OS', 'Browser']
2016-02-17 04:49:26 -05:00
})
export class Clipboard {
/**
* Copies the given text
* @param text
* @returns {Promise<T>}
*/
2016-02-17 04:52:00 -05:00
@Cordova()
static copy(text: string): Promise<any> { return }
2016-02-17 04:49:26 -05:00
/**
* Pastes the text stored in clipboard
* @returns {Promise<T>}
*/
2016-02-17 04:52:00 -05:00
@Cordova()
static paste(): Promise<any> { return }
2016-02-17 04:49:26 -05:00
}