UNPKG

awv3

Version:
14 lines (11 loc) 361 B
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' }; }