export interface SorterServiceInterface { /** * Sort to ascending an array of objects, based on a defined key. * * @param objects array of objects * @param key object's key to sort */ sortBy(objects: T[], key: string): T[]; /** * Sort to descending an array of objects, based on a defined key. * @param objects array of objects * @param key object's key to sort */ sortByDesc(objects: T[], key: string): T[]; } //# sourceMappingURL=sorter-service.interface.d.ts.map