interface StoredEventDoc {
    extras: Record<string, unknown>;
    id: string;
    matrix: {
        eventId: string;
        roomId: string;
    };
    remote: {
        eventId: string;
        roomId: string;
    };
}

Properties

Properties

extras: Record<string, unknown>
id: string
matrix: {
    eventId: string;
    roomId: string;
}

Type declaration

  • eventId: string
  • roomId: string
remote: {
    eventId: string;
    roomId: string;
}

Type declaration

  • eventId: string
  • roomId: string

Generated using TypeDoc