IGroupRoomBase type
Home > @cbnsndwch/zrocket-contracts > IGroupRoomBase
IGroupRoomBase type
Represents the base structure for a group room.
Signature:
type IGroupRoomBase<
TType extends RoomType.PrivateGroup | RoomType.PublicChannel
> = IRoomBase<TType> & {
name: string;
topic?: string;
description?: string;
readOnly?: boolean;
archived?: boolean;
};References: RoomType.PrivateGroup, RoomType.PublicChannel, IRoomBase
How was this page?