/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { NzSafeAny } from 'ng-zorro-antd/core/types'; import { MagGroupAndFilterDescription } from './mag-group-and-filter-description'; export interface SelectableDataSourceOption { modelFilter?: Function; multipleSelection?: boolean; /** * 데이터로부터 필터 값을 생성하는 함수 * @param item */ makeFilterValues?(item: NzSafeAny): MagGroupAndFilterDescription[]; /** * 고정된 필터 목록 */ filterValues?: any; }