UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

4 lines (3 loc) 204 B
import type { Channel, UserResponse } from 'stream-chat'; export type ChannelOrUserResponse = Channel | UserResponse; export declare const isChannel: (output: ChannelOrUserResponse) => output is Channel;