1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00: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

Submodule jslib updated: 9c44fc1329...68f7557e44

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.');
}
}