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 authored and haideralsh committed May 9, 2024
1 parent ee81011 commit 058297a
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 058297a

Please sign in to comment.