mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import NotificationQueueMessage from './notificationQueueMessage';
|
|
|
|
export default class AddChangePasswordQueueMessage extends NotificationQueueMessage {
|
|
cipherId: string;
|
|
newPassword: string;
|
|
}
|