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