import { PipeTransform } from '@angular/core'; import { SortingService } from '../../services/sorting.service'; /** * @deprecated * Please make use of the sorting service and sort arrays in the class instead of in the template. */ export declare class ReversePipe implements PipeTransform { private _sortingService; constructor(_sortingService: SortingService); /** * uses sorting service to reverse the array */ transform(value: any): any; }