mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { SecureNoteType } from '@bitwarden/jslib';
|
|
|
|
class SecureNoteData {
|
|
type: SecureNoteType;
|
|
|
|
constructor(data: any) {
|
|
this.type = data.Type;
|
|
}
|
|
}
|
|
|
|
export { SecureNoteData };
|
|
(window as any).SecureNoteData = SecureNoteData;
|