@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
16 lines (15 loc) • 638 B
TypeScript
import { EventEmitter } from '@angular/core';
import { TccInputMask } from '../../../models/inputMask.model';
export declare class TccSpecialElementComponent {
_element: TccInputMask.specialElement;
sizeClasses: string;
size: TccInputMask.inputWidth;
searchEnter: boolean;
specialElementSearch: EventEmitter<TccInputMask.eventOutput<TccInputMask.ValueUnion>>;
specialElementSearchEnter: EventEmitter<TccInputMask.eventOutput<TccInputMask.ValueUnion>>;
set element(ele: TccInputMask.specialElement);
onSearch(value: string): void;
onEnter(value: string): void;
focus(): void;
refresh(): void;
}