UNPKG

@securecall/client-component

Version:

SecureCall Core Web Component

24 lines (23 loc) 675 B
import { EventEmitter } from '../../stencil-public-runtime'; import { IRequestField } from "../../interfaces/configuration"; export declare class SecurecallRequestString { fieldName: string; config: IRequestField; 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; handleChange(ev: any): void; validateChange(): CustomEvent<{ field: string; valid: boolean; value: string; }>; render(): any; }