@particle-network/auth-core-modal
Version:
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
14 lines (13 loc) • 351 B
TypeScript
import React from 'react';
type AlertModalProps = {
visible: boolean;
closable?: boolean;
maskClosable?: boolean;
contentMessage: string;
cancelText?: string;
okText: string;
onCancel?: () => void;
onOk: () => void;
};
declare const AlertModal: (props: AlertModalProps) => React.JSX.Element;
export default AlertModal;