UNPKG

@jdcfe/yep-react

Version:

一套移动端的React组件库

9 lines (8 loc) 263 B
import { DialogProps } from './Dialog'; export default function confirm(title: string, message: any, actions: { text: string; onClick: () => void; className: string; }[] | undefined, restProps: Omit<DialogProps, 'title'>): { close: () => void; };