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

20 lines
402 B
TypeScript
Raw Permalink Normal View History

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