communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
32 lines • 948 B
TypeScript
/// <reference types="react" />
/**
* Strings for UnsupportedBrowser component
*
* @beta
*/
export interface UnsupportedBrowserStrings {
/** String for the primary text */
primaryText: string;
/** String for the secondary text */
secondaryText: string;
/** String to display in the text for the help link */
moreHelpLinkText: string;
}
/**
* props for {@link UnsupportedBrowser} UI
*
* @beta
*/
export interface UnsupportedBrowserProps {
/** Handler to perform an action when the help link is actioned */
onTroubleshootingClick?: () => void;
/** String overrides for the component */
strings?: UnsupportedBrowserStrings;
}
/**
* UI to display to the user that the browser they are using is not supported by Azure Communications Calling service.
*
* @beta
*/
export declare const UnsupportedBrowser: (props: UnsupportedBrowserProps) => JSX.Element;
//# sourceMappingURL=UnsupportedBrowser.d.ts.map