UNPKG

contensis-core-api

Version:

A dependency library used by contensis-delivery-api and contensis-management-api

15 lines (14 loc) 301 B
export class Ordering { _items = []; asc(fieldName) { this._items.push({ 'asc': fieldName }); return this; } desc(fieldName) { this._items.push({ 'desc': fieldName }); return this; } toArray() { return this._items; } }