UNPKG

@securecall/client-component

Version:

SecureCall Core Web Component

25 lines (24 loc) 737 B
import { EventEmitter } from '../../stencil-public-runtime'; import { IRequestField } from "../../interfaces/configuration"; export declare class SecurecallRequestRadio { fieldName: string; config: IRequestField; requestRadioChangeEvent: EventEmitter<{ field: string; value: string; }>; isValidEvent: EventEmitter<{ field: string; valid: boolean; value: string; }>; private readonly log; get value(): string; set value(value: string); handleConfigChange(newConfig: any, oldConfig: any): void; componentWillLoad(): void; private handleLocalStorageChange; handleChange(ev: any): void; validateChange(input: string): void; render(): any; }