awv3
Version:
⚡ AWV3 embedded CAD
14 lines (11 loc) • 361 B
JavaScript
import Element from '../element';
export default class Input extends Element {
constructor(plugin, options) {
super(plugin, { type: Element.Type.Input, format: Input.Format.Default, readonly: false, value: '', ...options });
}
static Format = {
Default: 'Default',
Vector: 'Vector',
MultiLine: 'MultiLine'
};
}