matrix-react-sdk
Version:
SDK for matrix.org using React
11 lines (10 loc) • 395 B
TypeScript
interface Props {
/** Callback which the view will call if the user confirms they want to use this window */
onConfirm: () => void;
}
/**
* Component shown by {@link MatrixChat} when another session is already active in the same browser and we need to
* confirm if we should steal its lock
*/
export declare function ConfirmSessionLockTheftView(props: Props): JSX.Element;
export {};