Skip to content

Commit

Permalink
fix: Walk back some unknowns
Browse files Browse the repository at this point in the history
This is causing grief with type assertions. Let's walk this back until
we can adequately type the table component.
  • Loading branch information
jherdman committed May 9, 2024
1 parent 75dff4c commit 760872b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Table/Table.types.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Key } from "react";
import PropTypes from "prop-types";

export type RowType = unknown;
export type RowType = any;

export interface CellInfoType<ColumnMetadata> {
cellData: unknown;
cellData: any;
column: ColumnType<ColumnMetadata>;
row: RowType;
}
Expand Down

0 comments on commit 760872b

Please sign in to comment.