UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

9 lines 625 B
import { ConfirmationDialogProps } from '../ConfirmationDialog/ConfirmationDialog'; export type SignInRequiredModalProps = Partial<Omit<ConfirmationDialogProps, 'title' | 'onConfirm' | 'onCancel'>> & { onHide: () => void; }; export declare const CONFIRM_BUTTON_TEXT = "Sign in"; export declare const DEFAULT_CONTENT = "You will need to sign in for access to that resource."; export declare const TITLE = "Sign In Required"; export declare function SignInRequiredModal({ onHide, content, open, ...rest }: SignInRequiredModalProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SignInRequiredModal.d.ts.map