stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 348 B
TypeScript
import React from 'react';
import type { PollOption } from 'stream-chat';
export type PollOptionWithVotesProps = {
option: PollOption;
countVotesPreview?: number;
showAllVotes?: () => void;
};
export declare const PollOptionWithLatestVotes: ({ countVotesPreview, option, showAllVotes, }: PollOptionWithVotesProps) => React.JSX.Element;