UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

15 lines 726 B
import { Column } from '@tanstack/react-table'; type ColumnHeaderEnumFilterProps<TData = unknown, TValue = unknown> = { column: Column<TData, TValue>; title: string; }; /** * Used to create {@link EnumFacetFilterUIProps} that can be used to create a control to filter column values based on * the provided @tanstack/react-table {@link Column}. The custom properties used to configure the filter should be set * in the column's `meta` field. * @param props * @constructor */ export declare function ColumnHeaderEnumFilter<TData = unknown, TValue = unknown>(props: ColumnHeaderEnumFilterProps<TData, TValue>): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ColumnHeaderEnumFilter.d.ts.map