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