Interface RatchetRequestMessage

interface RatchetRequestMessage {
    data: {
        keyIndex?: number;
        participantIdentity?: string;
    };
    kind: "ratchetRequest";
}

Hierarchy (view full)

Properties

Properties

data: {
    keyIndex?: number;
    participantIdentity?: string;
}

Type declaration

  • Optional keyIndex?: number
  • Optional participantIdentity?: string
kind: "ratchetRequest"