import { FilterExpression, FilterOperators } from '@luzmo/dashboard-contents-types'; import { AvailableSlots, SelectedDataIn, ParametersInput } from '../filters.model'; type BarchartFilterIn = SelectedDataIn & { expression: Extract; parameters: [ { slot: Extract; }, ParametersInput ]; }; type BarchartFilterIn2 = SelectedDataIn & { expression: Extract; parameters: [ { slot: Extract; }, string[] ]; }; type BarchartFilterInput1 = Partial>; type BarchartFilterInput2 = Partial>; export type BarChartSelectedDataInput = BarchartFilterInput1 | BarchartFilterInput2; export {};