mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
system service for proc reload and clear clipboard
This commit is contained in:
@@ -6,6 +6,4 @@ export abstract class LockService {
|
||||
setLockOption: (lockOption: number) => Promise<void>;
|
||||
isPinLockSet: () => Promise<[boolean, boolean]>;
|
||||
clear: () => Promise<any>;
|
||||
startLockReload: () => void;
|
||||
cancelLockReload: () => void;
|
||||
}
|
||||
|
||||
5
src/abstractions/system.service.ts
Normal file
5
src/abstractions/system.service.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export abstract class SystemService {
|
||||
startProcessReload: () => void;
|
||||
cancelProcessReload: () => void;
|
||||
clearClipboard: (clipboardValue: string, timeoutMs?: number) => void;
|
||||
}
|
||||
Reference in New Issue
Block a user