1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-19 00:40:11 -07:00
deskreen/app/features/PeerConnection/ReceiveEncryptedMessagePayload.d.ts
2021-01-17 23:45:59 +02:00

7 lines
153 B
TypeScript

interface ReceiveEncryptedMessagePayload {
payload: string;
signature: string;
iv: string;
keys: { sessionKey: string; signingKey: string }[];
}