1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Add types for addLogin and changePassword runtime messages

This commit is contained in:
Daniel James Smith
2021-10-19 12:10:31 +02:00
parent 344878ef4f
commit 3bb58baf45
4 changed files with 26 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
export default class AddLoginRuntimeMessage {
username: string;
password: string;
url: string;
}

View File

@@ -0,0 +1,5 @@
export default class ChangePasswordRuntimeMessage {
currentPassword: string;
newPassword: string;
url: string;
}