1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-05 23:20:31 +01:00

readFromClipboard util

This commit is contained in:
Kyle Spearrin 2019-02-26 22:35:53 -05:00
parent dd2be22351
commit 21d011554c

View File

@ -28,4 +28,5 @@ export abstract class PlatformUtilsService {
isDev: () => boolean;
isSelfHost: () => boolean;
copyToClipboard: (text: string, options?: any) => void;
readFromClipboard: (options?: any) => Promise<string>;
}