@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
13 lines (12 loc) • 490 B
TypeScript
/**
* This function helps consider the every condition
* related to enabling emoji reaction feature.
*/
import type { GroupChannel } from '@sendbird/chat/groupChannel';
import type { SendbirdStateConfig } from '../lib/Sendbird/types';
export interface IsReactionEnabledProps {
channel: GroupChannel | null;
config: SendbirdStateConfig;
moduleLevel?: boolean;
}
export declare function getIsReactionEnabled({ channel, config, moduleLevel, }: IsReactionEnabledProps): boolean;