UNPKG

@azure/communication-react

Version:

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

18 lines 617 B
/// <reference types="react" /> import { SidePaneRenderer } from './SidePaneProvider'; /** @private */ export interface SidePaneProps { updateSidePaneRenderer: (renderer: SidePaneRenderer | undefined) => void; mobileView?: boolean; maxWidth?: string; minWidth?: string; ariaLabel?: string; disablePeopleButton?: boolean; disableChatButton?: boolean; onChatButtonClicked?: () => void; onPeopleButtonClicked?: () => void; showAddPeopleButton?: boolean; } /** @private */ export declare const SidePane: (props: SidePaneProps) => JSX.Element; //# sourceMappingURL=SidePane.d.ts.map