UNPKG

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

11 lines (10 loc) 220 B
import { SelectItem } from './selectitem'; /** * Represents a group of select items. * @group Interface */ export interface SelectItemGroup<T = any> { label: string; value?: any; items: SelectItem<T>[]; }