1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

implement readFromClipboard util

This commit is contained in:
Kyle Spearrin 2019-02-26 22:45:59 -05:00
parent 290afc7ac2
commit 637241e27d
2 changed files with 5 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit 9c44fc1329b9595560462ffb7cd4d32bb0e22a68
Subproject commit 68f7557e44766ae1d9596e2c06877a51f34cb7a0

View File

@ -128,4 +128,8 @@ export class NodePlatformUtilsService implements PlatformUtilsService {
copyToClipboard(text: string, options?: any): void {
throw new Error('Not implemented.');
}
readFromClipboard(options?: any): Promise<string> {
throw new Error('Not implemented.');
}
}