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

13 lines (12 loc) 265 B
import { SortMeta } from './sortmeta'; /** * Represents an event triggered when sorting is applied. * @group Interface */ export interface SortEvent { data?: any[]; mode?: string; field?: string; order?: number; multiSortMeta?: SortMeta[]; }