1
13693261870
2024-12-06 e886aadfe1d9b2eca35cc3f57c9ef1d2c580b538
1
2
3
4
5
6
7
8
9
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;