1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 11:33:28 +00:00

api support for sharing

This commit is contained in:
Kyle Spearrin
2018-06-12 11:45:02 -04:00
parent 5db55496c2
commit b3f71ed8e4
27 changed files with 371 additions and 12 deletions

View File

@@ -6,7 +6,10 @@ export class LoginUriData {
uri: string;
match: UriMatchType = null;
constructor(data: LoginUriApi) {
constructor(data?: LoginUriApi) {
if (data == null) {
return;
}
this.uri = data.uri;
this.match = data.match;
}