xenos
Version:
Xenos is a data grid built upon angular2 and bootstrap.
13 lines (11 loc) • 391 B
text/typescript
import { SortDirection } from "./sort-direction";
export class SortDescriptor {
constructor(id: any, direction: SortDirection, valueAccessor: (x: any) => any) {
this.id = id;
this.direction = direction;
this.valueAccessor = valueAccessor;
}
public id: any;
public direction: SortDirection;
public valueAccessor: (x: any) => any;
}