UNPKG

path-framework-weberm16

Version:
13 lines (10 loc) 237 B
import {FormField} from "../form-field"; export class Radio extends FormField { private _key:string; get key():string { return this._key; } set key(value:string) { this._key = value; } }