communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
37 lines • 1.22 kB
TypeScript
/// <reference types="react" />
/**
* Strings for UnsupportedBrowser component
*
* @beta
*/
export interface UnsupportedBrowserVersionStrings {
/** 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;
/** String for continue without updating button */
continueAnywayButtonText?: string;
}
/**
* props for {@link UnsupportedBrowserVersion} UI
*
* @beta
*/
export interface UnsupportedBrowserVersionProps {
/** Handler to perform an action when the help link is actioned */
onTroubleshootingClick?: () => void;
/** String overrides for the component */
strings?: UnsupportedBrowserVersionStrings;
/** Handler to allow user to continue into the call */
onContinueAnywayClick?: () => void;
}
/**
* UI to display to the user that the browser version they are using is out of date
* and not supported by Azure Communications Calling service.
*
* @beta
*/
export declare const UnsupportedBrowserVersion: (props: UnsupportedBrowserVersionProps) => JSX.Element;
//# sourceMappingURL=UnsupportedBrowserVersion.d.ts.map