Update to FilterGroup

This commit is contained in:
Timo Bejan 2021-08-06 11:26:43 +03:00
parent 90809dce53
commit f957fc93e1

View File

@ -2,7 +2,9 @@ import { NestedFilter } from './nested-filter.model';
import { TemplateRef } from '@angular/core';
export interface FilterGroup {
filters: NestedFilter[];
readonly slug: string;
readonly label?: string;
readonly icon?: string;
@ -11,4 +13,5 @@ export interface FilterGroup {
readonly checker: Function;
readonly matchAll?: boolean;
readonly checkerArgs?: any[];
}