Files
aliasvault/shared/models/src/vault/EncryptionKey.ts
2025-06-11 21:52:21 +02:00

10 lines
167 B
TypeScript

/**
* Encryption key SQLite database type.
*/
export type EncryptionKey = {
Id: string;
PublicKey: string;
PrivateKey: string;
IsPrimary: boolean;
}