1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 10:43:35 +00:00

remove model window assignments

This commit is contained in:
Kyle Spearrin
2018-01-20 14:12:18 -05:00
parent e753becd33
commit e157d5be6d
41 changed files with 41 additions and 164 deletions

View File

@@ -1,4 +1,4 @@
class ErrorResponse {
export class ErrorResponse {
message: string;
validationErrors: { [key: string]: string[]; };
statusCode: number;
@@ -32,6 +32,3 @@ class ErrorResponse {
return this.message;
}
}
export { ErrorResponse };
(window as any).ErrorResponse = ErrorResponse;