communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
22 lines • 647 B
TypeScript
/// <reference types="react" />
import { LayoutProps } from './Layout';
/**
* Props for {@link FocusedContentLayout}.
*
* @private
*/
export interface FocusedContentLayoutProps extends LayoutProps {
/**
* Whether to display the local video camera switcher button
*/
showCameraSwitcherInLocalPreview?: boolean;
/**
* Height of parent element
*/
parentHeight?: number;
}
/**
* Video gallery layout to focus on the screenshare stream that is present in the call.
*/
export declare const FocusedContentLayout: (props: FocusedContentLayoutProps) => JSX.Element;
//# sourceMappingURL=FocusContentLayout.d.ts.map