@gpa-gemstone/react-table
Version:
Table for GPA web applications
15 lines (14 loc) • 498 B
TypeScript
import { Search } from '@gpa-gemstone/react-interactive';
interface IProps<T> {
SetFilter: (evt: Search.IFilter<T>[]) => void;
Filter: Search.IFilter<T>[];
FieldName: string;
ApproxMatches?: boolean;
}
/**
* Component for rendering a text input filter.
* @param props - Props for configuring and managing the text filter.
* @returns JSX for rendering a text input filter with wildcard options.
*/
export declare function TextFilter<T>(props: IProps<T>): JSX.Element;
export {};