1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

convert more service abstractions

This commit is contained in:
Kyle Spearrin
2018-02-10 10:53:07 -05:00
parent 8d4799a0a2
commit 6c3f0a538f
3 changed files with 13 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
export interface LockService {
checkLock(): Promise<void>;
lock(): Promise<void>;
export abstract class LockService {
checkLock: () => Promise<void>;
lock: () => Promise<void>;
}