matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 363 B
TypeScript
import React from "react";
import { Room } from "matrix-js-sdk/src/matrix";
interface IProps {
space: Room;
spaceChildren: Room[];
selected: Set<Room>;
noneLabel?: string;
allLabel: string;
specificLabel: string;
onChange(rooms: Room[]): void;
}
declare const SpaceChildrenPicker: React.FC<IProps>;
export default SpaceChildrenPicker;