1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +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

@@ -4,7 +4,7 @@ import { SecureNoteData } from '../data/secureNoteData';
import Domain from './domain';
class SecureNote extends Domain {
export class SecureNote extends Domain {
type: SecureNoteType;
constructor(obj?: SecureNoteData, alreadyEncrypted: boolean = false) {
@@ -22,6 +22,3 @@ class SecureNote extends Domain {
};
}
}
export { SecureNote };
(window as any).SecureNote = SecureNote;