blob: 97c66c2c472651b2b2db3c1c1b9a31c53e17f823 [file] [log] [blame]
/**
* Assign a text value to the system clipboard. Note: Due to browser
* security restrictions, the copy will only succeed if this method
* is invoked as a result of a user action (eg. user button click).
*
* @param value text value to be assigned to clipboard.
* @returns boolean indicating success/failure of copy operation.
*/
export declare function copyToClipboard(value: string): boolean;