primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
31 lines (30 loc) • 625 B
TypeScript
import { TemplateRef } from '@angular/core';
/**
* Defines valid templates in SplitButton.
* @group Templates
*/
export interface SplitButtonTemplates {
/**
* Custom template of content.
*/
content(): TemplateRef<any>;
/**
* Custom template of dropdownicon.
*/
dropdownicon(): TemplateRef<any>;
}
/**
* Defines ButtonProps interface.
*/
export interface ButtonProps {
ariaLabel?: string;
}
/**
* Defines MenuButtonProps interface.
*/
export interface MenuButtonProps {
ariaLabel?: string;
ariaHasPopup?: boolean;
ariaExpanded?: boolean;
ariaControls?: string;
}