UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

11 lines (10 loc) 456 B
import type { GeneralType, SupportedMimeType } from './mimeTypes'; import type { ComponentType } from 'react'; import type { IconProps } from './FileIconSet'; export type IconType = 'standard' | 'alt'; type IconMap = { standard: Record<SupportedMimeType | GeneralType | 'fallback', ComponentType<IconProps>>; alt?: Record<SupportedMimeType | GeneralType | 'fallback', ComponentType<IconProps>>; }; export declare const iconMap: IconMap; export {};