UNPKG

vue-diagram-editor-improved

Version:

Highly customizable diagram editor support for Vue.js

14 lines (12 loc) 270 B
export default class Size { width = null; height = null; /** * @param {Number} width * @param {Number} height */ constructor({width = 150, height = 150}) { this.width = Number(width); this.height = Number(height); } }