@securecall/client-component
Version:
SecureCall Core Web Component
20 lines (19 loc) • 589 B
TypeScript
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(): void;
render(): any;
}