mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import { SecureNoteType } from '../../enums/secureNoteType.enum';
|
|
|
|
class SecureNoteData {
|
|
type: SecureNoteType;
|
|
|
|
constructor(data: any) {
|
|
this.type = data.Type;
|
|
}
|
|
}
|
|
|
|
export { SecureNoteData };
|
|
(window as any).SecureNoteData = SecureNoteData;
|