1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

Declare and use types for notificationQueue

This commit is contained in:
Daniel James Smith
2021-10-15 19:47:48 +02:00
parent d1977f1f08
commit 92459c6098
5 changed files with 30 additions and 22 deletions

View File

@@ -1,9 +1,6 @@
export default class AddChangePasswordQueueMessage {
type: string;
import NotificationQueueMessage from "./notificationQueueMessage";
export default class AddChangePasswordQueueMessage extends NotificationQueueMessage {
cipherId: string;
newPassword: string;
domain: string;
tabId: string;
expires: Date;
wasVaultLocked: boolean;
}