comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
20 lines (19 loc) • 399 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const countdownProps = {
value: {
type: [String, Number],
default: 0
},
format: {
type: String,
default: "HH:mm:ss"
},
prefix: String,
suffix: String
};
const countdownEmits = {
finish: () => true
};
exports.countdownEmits = countdownEmits;
exports.countdownProps = countdownProps;