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
2019-02-27 09:21:58 -05:00

6 lines
187 B
TypeScript

export abstract class SystemService {
startProcessReload: () => void;
cancelProcessReload: () => void;
clearClipboard: (clipboardValue: string, timeoutMs?: number) => void;
}