tav-ui
Version:
33 lines (31 loc) • 793 B
JavaScript
const countDownButtonProps = {
value: { type: [Object, Number, String, Array] },
count: { type: Number, default: 60 },
beforeStartFunc: {
type: Function,
default: null
}
};
const countDownProps = {
value: { type: String },
size: { type: String, validator: (v) => ["default", "large", "small"].includes(v) },
count: { type: Number, default: 60 },
sendCodeApi: {
type: Function,
default: null
}
};
const countDownInputProps = {
value: { type: String },
size: {
type: String,
validator: (v) => ["default", "large", "small"].includes(v)
},
count: { type: Number, default: 60 },
sendCodeApi: {
type: Function,
default: null
}
};
export { countDownButtonProps, countDownInputProps, countDownProps };
//# sourceMappingURL=types2.mjs.map