UNPKG

matrix-js-sdk

Version:
16 lines 512 B
import { IPublicRoomsChunkRoom } from "../client"; import { RoomType } from "./event"; import { IStrippedState } from "../sync-accumulator"; export interface IHierarchyRelation extends IStrippedState { origin_server_ts: number; content: { order?: string; suggested?: boolean; via?: string[]; }; } export interface IHierarchyRoom extends IPublicRoomsChunkRoom { room_type?: RoomType | string; children_state: IHierarchyRelation[]; } //# sourceMappingURL=spaces.d.ts.map