import { DomainUserIdentifier } from "../identity";
export interface ICreateChatChannelOptions {
type: "channel" | "room";
membership: "public" | "private";
id?: string;
name?: string;
topic?: string;
members?: DomainUserIdentifier[];
ignoreExistsError?: boolean;
}