import FilterItem from '../FilterItem';
|
/**
|
* Simple method to check if two arrays of FilterItems
|
* are sorted in the same manner or not.
|
* @param {Array} arr1 the first array of FilterItems
|
* @param {Array} arr2 the second array of FilterItems
|
* @return {Boolean} equality
|
*/
|
export declare const filterItemArraysHaveSameSorting: (filterItemsA: FilterItem[], filterItemsB: FilterItem[]) => boolean;
|