File: /var/www/web.enelar.com.co/node_modules/primeng/speeddial/speeddial.interface.d.ts
import { TemplateRef } from '@angular/core';
import { MenuItem } from 'primeng/api';
/**
* Defines valid templates in SpeedDial.
* @group Templates
*/
export interface SpeedDialTemplates {
/**
* Custom template of item.
*/
item(context: {
/**
* Data of the item.
*/
$implicit: MenuItem[];
/**
* Index of the item.
*/
index: number;
}): TemplateRef<{
$implicit: MenuItem[];
index: number;
}>;
/**
* Custom template of button.
*/
button(): TemplateRef<any>;
}