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

19 lines
378 B
TypeScript
Raw Normal View History

2024-07-16 15:23:22 +00:00
import { TemplateRef } from '@angular/core';
/**
* Defines valid templates in ScrollTop.
* @group Templates
*/
export interface ScrollTopTemplates {
/**
* Icon of the component.
*/
icon(context: {
/**
* Style class of the icon.
*/
styleClass: 'p-scrolltop-icon';
}): TemplateRef<{
styleClass: string;
}>;
}