@tsparticles/shape-heart
Version:
tsParticles heart shape
14 lines (13 loc) • 333 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HeartDrawer = void 0;
const Utils_js_1 = require("./Utils.js");
class HeartDrawer {
constructor() {
this.validTypes = ["heart"];
}
draw(data) {
(0, Utils_js_1.drawHeart)(data);
}
}
exports.HeartDrawer = HeartDrawer;