UNPKG

xenos

Version:

Xenos is a data grid built upon angular2 and bootstrap.

11 lines (10 loc) 284 B
export class FilterDescriptor { constructor(id: any, predicate: (x: any) => boolean, groupId?: any) { this.predicate = predicate; this.groupId = groupId; this.id = id; } id: any; groupId: any; predicate: (x: any) => boolean; }