Source

e2ee/ICryptoRoomInformation.ts

  1. import { EncryptionEventContent } from "../models/events/EncryptionEvent";
  2. /**
  3. * Information about a room for the purposes of crypto.
  4. * @category Encryption
  5. */
  6. export interface ICryptoRoomInformation extends Partial<EncryptionEventContent> {
  7. historyVisibility?: string;
  8. }