Make exported props non-nullable (#33649)

This commit is contained in:
slikts
2019-03-11 11:38:58 -07:00
committed by Wesley Wigham
parent 771847f9bf
commit 804ead1f52
+6 -6
View File
@@ -51,12 +51,12 @@ export interface SortingRule {
}
export interface TableProps<D = any, ResolvedData = D> extends
Partial<TextProps>,
Partial<ComponentDecoratorProps>,
Partial<ControlledStateCallbackProps>,
Partial<PivotingProps>,
Partial<ControlledStateOverrideProps>,
Partial<ComponentProps> {
TextProps,
ComponentDecoratorProps,
ControlledStateCallbackProps,
PivotingProps,
ControlledStateOverrideProps,
ComponentProps {
/** Default: [] */
data: D[];