We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d342b2 commit 649ed38Copy full SHA for 649ed38
src/Table.tsx
@@ -817,13 +817,16 @@ export function genTable(shouldTriggerRender?: CompareProps<typeof Table>): type
817
const ImmutableTable = genTable();
818
type ImmutableTableType = typeof ImmutableTable & {
819
EXPAND_COLUMN: typeof EXPAND_COLUMN;
820
+ INTERNAL_HOOKS: typeof INTERNAL_HOOKS;
821
Column: typeof Column;
822
ColumnGroup: typeof ColumnGroup;
823
Summary: typeof FooterComponents;
824
};
825
826
(ImmutableTable as ImmutableTableType).EXPAND_COLUMN = EXPAND_COLUMN;
827
828
+(ImmutableTable as ImmutableTableType).INTERNAL_HOOKS = INTERNAL_HOOKS;
829
+
830
(ImmutableTable as ImmutableTableType).Column = Column;
831
832
(ImmutableTable as ImmutableTableType).ColumnGroup = ColumnGroup;
0 commit comments