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
19 lines (18 loc) • 334 B
TypeScript
/**
* Represents metadata for filtering a data set.
* @group Interface
*/
export interface FilterMetadata {
/**
* The value used for filtering.
*/
value?: any;
/**
* The match mode for filtering.
*/
matchMode?: string;
/**
* The operator for filtering.
*/
operator?: string;
}