Icard/angular-clarity-master(work.../node_modules/primeng/chip/chip.interface.d.ts

16 lines
319 B
TypeScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
import { TemplateRef } from '@angular/core';
/**
* Defines valid templates in Chip.
* @group Templates
*/
export interface ChipTemplates {
/**
* Custom template of content.
*/
content(): TemplateRef<any>;
/**
* Custom template of remove icon.
*/
removeicon(): TemplateRef<any>;
}