@azure/communication-react
Version:
React library for building modern communication user experiences utilizing Azure Communication Services
28 lines • 1.25 kB
TypeScript
/// <reference types="react" />
import { CommonCallControlOptions } from '../types/CommonCallControlOptions';
import { VideoGalleryLayout } from "../../../../../react-components/src";
import { ReactionResources } from "../../../../../react-components/src";
import { DtmfDialPadOptions } from '../../CallComposite';
/** @private */
export interface PreparedMoreDrawerProps {
onLightDismiss: () => void;
onPeopleButtonClicked: () => void;
callControls?: boolean | CommonCallControlOptions;
onClickShowDialpad?: () => void;
isCaptionsSupported?: boolean;
isRealTimeTextSupported?: boolean;
disableButtonsForHoldScreen?: boolean;
onUserSetGalleryLayout?: (layout: VideoGalleryLayout) => void;
userSetGalleryLayout?: VideoGalleryLayout;
onSetDialpadPage?: () => void;
dtmfDialerPresent?: boolean;
dtmfDialerOptions?: boolean | DtmfDialPadOptions;
useTeamsCaptions?: boolean;
reactionResources?: ReactionResources;
onClickMeetingPhoneInfo?: () => void;
onStartRealTimeText?: () => void;
startRealTimeTextButtonChecked?: boolean;
}
/** @private */
export declare const PreparedMoreDrawer: (props: PreparedMoreDrawerProps) => JSX.Element;
//# sourceMappingURL=PreparedMoreDrawer.d.ts.map