From 804ead1f523ee862bd3820447c45bcd8951a29ce Mon Sep 17 00:00:00 2001 From: slikts Date: Mon, 11 Mar 2019 20:38:58 +0200 Subject: [PATCH] Make exported props non-nullable (#33649) --- types/react-table/index.d.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/types/react-table/index.d.ts b/types/react-table/index.d.ts index 6aad7c3c8c..c0c2a8fc25 100644 --- a/types/react-table/index.d.ts +++ b/types/react-table/index.d.ts @@ -51,12 +51,12 @@ export interface SortingRule { } export interface TableProps extends - Partial, - Partial, - Partial, - Partial, - Partial, - Partial { + TextProps, + ComponentDecoratorProps, + ControlledStateCallbackProps, + PivotingProps, + ControlledStateOverrideProps, + ComponentProps { /** Default: [] */ data: D[];