Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
typeChar(value: any, cls = 'input'): this {
const node = this.getEl(cls) as HTMLInputElement;
typeInElement(value, node);
tick();
return this.dc();
}