stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines • 483 B
TypeScript
import type { VideoAttachment as VideoAttachmentType } from 'stream-chat';
import { type ComponentType } from 'react';
import type { VideoPlayerProps } from '../VideoPlayer';
export type VideoAttachmentProps = {
attachment: VideoAttachmentType;
VideoPlayer?: ComponentType<VideoPlayerProps>;
};
export declare const VideoAttachment: ({ attachment, VideoPlayer, }: VideoAttachmentProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=VideoAttachment.d.ts.map