@kre-form/survey
Version:
10 lines (9 loc) • 347 B
TypeScript
import { OnInit, OnChanges, SimpleChanges } from "@angular/core";
import { KreFormFieldConfig } from "@kre-form/core";
export declare class KreSurveySettingRadio implements OnInit, OnChanges {
questionField: any;
field: KreFormFieldConfig;
constructor();
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
}