1 2 3 4 5 6 7
/** * Partial types for a Matrix Event. */ export interface IPartialEvent<TContent> { type: string; content: TContent; }