UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

15 lines (14 loc) 429 B
/// <reference types="react" /> import { Logger } from '../../../lib/Sendbird/types'; interface DynamicParams { ref: React.RefObject<HTMLElement>; } interface StaticParams { logger: Logger; } /** * exported, should be backwords compatible * This is a dirty way to get the mentions given DOM node */ export declare function useDirtyGetMentions({ ref, }: DynamicParams, { logger, }: StaticParams): Element[]; export {};