From 50dd66722cf01cdc2f4b55a2fe07fe03e60dbebc Mon Sep 17 00:00:00 2001 From: Wlad Meixner Date: Sun, 15 Mar 2020 21:10:32 +0100 Subject: [PATCH] [react-bootstrap-table2-toolkit] narrow types --- types/react-bootstrap-table2-toolkit/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/react-bootstrap-table2-toolkit/index.d.ts b/types/react-bootstrap-table2-toolkit/index.d.ts index 84282c4f65..e4d7860e06 100644 --- a/types/react-bootstrap-table2-toolkit/index.d.ts +++ b/types/react-bootstrap-table2-toolkit/index.d.ts @@ -17,14 +17,14 @@ export interface InjectedSearchProps { onClear: () => void; } -export type SearchMartchProps = { +export type SearchMartchProps = { searchText: string; value: string; column: ColumnDescription; row: T; }; -export type TableSearchProps = Partial<{ +export type TableSearchProps = Partial<{ searchFormatted: boolean; defaultSearch: string; placeholder: string;