UNPKG

@ctodev/cclibrary-typings

Version:

Library typings for use with CLARC INFINITY

21 lines (20 loc) 653 B
import { EventEmitter } from '@angular/core'; import { addonIcon } from '../tcc-user-thumbnail/tcc-user-thumbnail.component'; import { TccIcon } from '../../../odata/models/shared.model'; export declare namespace tccTile { interface checkboxChangeEvent { Id: string; checked: boolean; } } export declare class TccTileComponent { CheckboxChangeEvent: EventEmitter<tccTile.checkboxChangeEvent>; data: any; icon: TccIcon; userThumbnailCondition: boolean; addonIcon: addonIcon; fallbackIcon: string; hasCheckbox: boolean; markCheckboxClick(event: any): void; onCheckboxChange(event: any): void; }