/** * Defines an interface that contains information about a realtime channel. */ export interface RealtimeChannelInfo { /** * The type of the channel. * This is usually used as an indicator of the type of events * that consumers are able to expect from the channel. */ type: string; /** * The unique ID of the channel. * GUIDs are usually used for private invite-only channels while * structured names are used for public channels. (like `namespace/room/channel-name`) */ id: string; /** * If set to true, specifies that the server should not perform any special * logic to initialize the channel. This can be useful for scenarios where we already * have data we want to import into the channel and don't want the server to make any data automatically. */ bare?: boolean; } //# sourceMappingURL=RealtimeChannelInfo.d.ts.map