diff --git a/docs b/docs index 2712e1de..f7da9cf2 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 2712e1deb1d44a09ae1a7fe2d3ddb225326b20c5 +Subproject commit f7da9cf2162780c831366b4fbb0304174534c4a6 diff --git a/src/plugins/filter/filter.types.ts b/src/plugins/filter/filter.types.ts index 08dd01f4..f0247120 100644 --- a/src/plugins/filter/filter.types.ts +++ b/src/plugins/filter/filter.types.ts @@ -65,14 +65,14 @@ export type FilterCaptions = { or: string; }; -export type FilterLocalization = { +export interface FilterLocalization { captions: FilterCaptions; filterNames: Record; -}; +} /** * Filter configuration for a column. This is the type of the `filter` property on a column. */ -export type ColumnFilterConfig = { +export interface ColumnFilterConfig { /** * The collection of filters to be applied to the column. */ @@ -102,7 +102,8 @@ export type ColumnFilterConfig = { * when the user clicks on the filter button. */ disableDynamicFiltering?: boolean; -}; +} + export type FilterCollectionItem = { type: FilterType; value?: any;