import { Input } from '../Input' import { InputType } from '../Input' export class Button extends Input { constructor(value: string) { super(InputType.Button, "btn"); this.value = value; } toJSON(): any { return { type: this.Type, name: this.Name, value: this.Value, importance: this.Importance, attributes: null } } }