1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/system.service.ts

7 lines
234 B
TypeScript
Raw Normal View History

export abstract class SystemService {
startProcessReload: () => void;
cancelProcessReload: () => void;
clearClipboard: (clipboardValue: string, timeoutMs?: number) => void;
2019-02-27 17:56:17 +01:00
clearPendingClipboard: () => Promise<any>;
}