stream-chat-react
Version:
React components to create chat conversations or livestream style chat
7 lines (6 loc) • 351 B
TypeScript
import React from 'react';
import type { DefaultStreamChatGenerics } from '../../../types';
export type FullPollOptionsListingProps = {
close?: () => void;
};
export declare const PollOptionsFullList: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ close, }: FullPollOptionsListingProps) => React.JSX.Element;