mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
soft locking with protected pin
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
export abstract class LockService {
|
||||
pinLocked: boolean;
|
||||
isLocked: () => Promise<boolean>;
|
||||
checkLock: () => Promise<void>;
|
||||
lock: () => Promise<void>;
|
||||
lock: (allowSoftLock?: boolean) => Promise<void>;
|
||||
setLockOption: (lockOption: number) => Promise<void>;
|
||||
isPinLockSet: () => Promise<boolean>;
|
||||
isPinLockSet: () => Promise<[boolean, boolean]>;
|
||||
clear: () => Promise<any>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user