Files
noteshare.space/webapp/src/lib/model/EncryptedNote.ts
2022-06-29 15:44:07 +02:00

8 lines
122 B
TypeScript

export type EncryptedNote = {
id: string;
insert_time: Date;
expiry_time: Date;
ciphertext: string;
hmac: string;
};