import { FilterExpression, FilterOperators } from '@luzmo/dashboard-contents-types'; import { AvailableSlots, SelectedDataIn, ParametersInput } from '../filters.model'; type TreemapFilterIn = SelectedDataIn & { expression: Extract; parameters: [ { slot: Extract; }, ParametersInput ]; }; type TreemapFilterIn2 = SelectedDataIn & { expression: Extract; parameters: [ { slot: Extract; }, string[] ]; }; type TreemapFilterInput1 = Partial>; type TreemapFilterInput2 = Partial>; export type TreemapSelectedDataInput = TreemapFilterInput1 | TreemapFilterInput2; export {};