UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

28 lines 875 B
/// <reference types="react" /> import { CaptionsInformation, RealTimeTextInformation } from './CaptionsBanner'; /** @internal */ export type _CaptionsAndRTTAnnouncerProps = { /** * Array of captions to be displayed */ captions: CaptionsInformation[]; /** * Array of finalized and partial real time text messages */ realTimeTexts?: { completedMessages?: RealTimeTextInformation[]; currentInProgress?: RealTimeTextInformation[]; myInProgress?: RealTimeTextInformation; }; /** * Title for the real time text messages */ realTimeTextTitle: string; /** * Title for the captions */ captionsTitle: string; }; /** @internal */ export declare const _CaptionsAndRTTAnnouncer: (props: _CaptionsAndRTTAnnouncerProps) => JSX.Element; //# sourceMappingURL=CaptionsAndRTTAnnouncer.d.ts.map