UNPKG

lwx-test-ui

Version:

lwx-test-ui

22 lines (21 loc) 658 B
import { ExtractPropTypes } from 'vue'; export declare const bigDialogProps: { readonly modelValue: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly title: { readonly type: StringConstructor; readonly default: "标题"; }; readonly customClass: { readonly type: StringConstructor; readonly default: ""; }; }; export type BigDialogProps = ExtractPropTypes<typeof bigDialogProps>; export declare const bigDialogEmits: { 'update:modelValue': (value: boolean) => boolean; close: () => boolean; }; export type BigDialogEmits = typeof bigDialogEmits;