@securecall/client-component
Version:
SecureCall Core Web Component
21 lines (20 loc) • 642 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
import { IRequestField } from "../../interfaces/configuration";
export declare class SecurecallRequestCurrency {
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;
private handleLocalStorageChange;
handleChange(ev: any): void;
validateChange(input: string): void;
render(): any;
}