UNPKG

@sendbird/uikit-react

Version:

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

12 lines (11 loc) 361 B
import { GroupChannel } from '@sendbird/chat/groupChannel'; import type { Logger } from '../Sendbird/types'; export declare function schedulerFactory<T>({ logger, timeout, cb, }: { logger: Logger; timeout?: number; cb: (item: T) => void; }): { push: (channel: GroupChannel) => void; clear: () => void; getQueue: () => GroupChannel[]; };