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 cdadeee commit 1ea865eCopy full SHA for 1ea865e
components/table/interface.ts
@@ -52,7 +52,9 @@ export const columnProps = {
52
// onHeaderCell?: (props: ColumnProps<T>) => any;
53
};
54
55
-export type ColumnProps = Partial<ExtractPropTypes<typeof columnProps>>;
+export type ColumnProps = Partial<ExtractPropTypes<typeof columnProps>> & {
56
+ slots?: Record<string, string>;
57
+};
58
59
export interface TableComponents {
60
table?: any;
0 commit comments