matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 1.08 kB
TypeScript
import { Room, ICreateRoomStateEvent, RoomType } from "matrix-js-sdk/src/matrix";
import { SpacePreferenceTab } from "../dispatcher/payloads/OpenSpacePreferencesPayload";
export declare const shouldShowSpaceSettings: (space: Room) => boolean;
export declare const makeSpaceParentEvent: (room: Room, canonical?: boolean) => ICreateRoomStateEvent;
export declare function showSpaceSettings(space: Room): void;
export declare const showAddExistingRooms: (space: Room) => void;
export declare const showCreateNewRoom: (space: Room, type?: RoomType) => Promise<boolean>;
export declare const shouldShowSpaceInvite: (space: Room) => boolean;
export declare const showSpaceInvite: (space: Room, initialText?: string) => void;
export declare const showAddExistingSubspace: (space: Room) => void;
export declare const showCreateNewSubspace: (space: Room) => void;
export declare const bulkSpaceBehaviour: (space: Room, children: Room[], fn: (room: Room) => Promise<unknown>) => Promise<void>;
export declare const showSpacePreferences: (space: Room, initialTabId?: SpacePreferenceTab) => void;