Interface SetKeyMessage

interface SetKeyMessage {
    data: {
        isPublisher: boolean;
        key: CryptoKey;
        keyIndex?: number;
        participantIdentity?: string;
    };
    kind: "setKey";
}

Hierarchy (view full)

Properties

Properties

data: {
    isPublisher: boolean;
    key: CryptoKey;
    keyIndex?: number;
    participantIdentity?: string;
}

Type declaration

  • isPublisher: boolean
  • key: CryptoKey
  • Optional keyIndex?: number
  • Optional participantIdentity?: string
kind: "setKey"