Update DataTable.svelte.d.ts

This commit is contained in:
Eric Liu 2024-11-10 15:37:11 -08:00
commit 8578c6d5c5

View file

@ -188,7 +188,7 @@ export type DataTableProps<Row> = Omit<$RestProps, keyof $Props<Row>> &
$Props<Row>;
export default class DataTable<
Row extends DataTableRow = DataTableRow
Row extends DataTableRow = DataTableRow,
> extends SvelteComponentTyped<
DataTableProps<Row>,
{