@pit-front-end/components
Version:
湖南创智艾泰克科技有限公司
26 lines (25 loc) • 776 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const iconBoxProps: {
readonly modelValue: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly current: {
readonly type: StringConstructor;
readonly default: "";
};
readonly title: {
readonly type: StringConstructor;
readonly default: "图标选择";
};
readonly width: {
readonly type: [StringConstructor, NumberConstructor];
readonly default: "950px";
};
};
export type IconBoxProps = ExtractPropTypes<typeof iconBoxProps>;
export declare const iconBoxEmits: {
choiceIcon: (val: any) => any;
'update:modelValue': (value: boolean) => boolean;
};
export type IconBoxEmits = typeof iconBoxEmits;