matrix-js-sdk
Version:
Matrix Client-Server SDK for Javascript
18 lines • 476 B
TypeScript
import { IMentions } from "../matrix";
export interface EncryptionKeyEntry {
index: number;
key: string;
}
export interface EncryptionKeysEventContent {
keys: EncryptionKeyEntry[];
device_id: string;
call_id: string;
}
export type CallNotifyType = "ring" | "notify";
export interface ICallNotifyContent {
"application": string;
"m.mentions": IMentions;
"notify_type": CallNotifyType;
"call_id": string;
}
//# sourceMappingURL=types.d.ts.map