UNPKG

@minto-ai/mt-ui

Version:

UI组件库

42 lines (41 loc) 899 B
import { ExtractPropTypes } from 'vue'; declare const dialogConfirmLayout: { /** * 是否显示确认按钮 */ showConfirm: { type: BooleanConstructor; default: boolean; }; /** * 确认按钮的文本 */ confirmText: { type: StringConstructor; default: string; }; /** * 是否显示取消按钮 */ showCancel: { type: BooleanConstructor; default: boolean; }; /** * 取消按钮的文本 */ cancelText: { type: StringConstructor; default: string; }; /** * 提交时是否显示加载中状态 */ loading: { type: BooleanConstructor; default: boolean; }; }; type DialogConfirmLayoutProps = ExtractPropTypes<typeof dialogConfirmLayout>; export { dialogConfirmLayout, }; export type { DialogConfirmLayoutProps };