付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Filterizr from './Filterizr';
import { Destructible } from './types/interfaces';
export default class FilterControls implements Destructible {
    private filterControls;
    private filterizr;
    private multiFilterControls;
    private searchControls;
    private selector;
    private shuffleControls;
    private sortAscControls;
    private sortDescControls;
    /**
     * @param filterizr keep a ref to the Filterizr object to control actions
     * @param selector selector of controls in case of multiple Filterizr instances
     */
    constructor(filterizr: Filterizr, selector?: string);
    destroy(): void;
    private initialize;
}