tabulify 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
@@ -17,11 +17,10 @@ export interface Pagination {
|
|
17
17
|
current?: number;
|
18
18
|
onChange?: (page: number) => void;
|
19
19
|
}
|
20
|
-
export interface TableProps<T
|
21
|
-
key: React.Key;
|
22
|
-
}> {
|
20
|
+
export interface TableProps<T> {
|
23
21
|
columns: Column<T>[];
|
24
22
|
dataSource: T[];
|
23
|
+
key: keyof T;
|
25
24
|
rowSelection?: RowSelection<T>;
|
26
25
|
pagination?: Pagination;
|
27
26
|
}
|