UNPKG

@convergence/convergence

Version:
11 lines (10 loc) 294 B
import { DomainUserIdentifier } from "../identity"; export interface ICreateChatChannelOptions { type: "channel" | "room"; membership: "public" | "private"; id?: string; name?: string; topic?: string; members?: DomainUserIdentifier[]; ignoreExistsError?: boolean; }