1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 03:03:43 +00:00

system service for proc reload and clear clipboard

This commit is contained in:
Kyle Spearrin
2019-02-27 09:21:58 -05:00
parent 68f7557e44
commit 808437ab06
4 changed files with 72 additions and 34 deletions

View File

@@ -0,0 +1,5 @@
export abstract class SystemService {
startProcessReload: () => void;
cancelProcessReload: () => void;
clearClipboard: (clipboardValue: string, timeoutMs?: number) => void;
}