This repository was archived by the owner on Sep 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +19
-4
lines changed
packages/svelte-materialify/@types Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 11import { SvelteComponent } from './shared' ;
22
3- interface DataTableProps { }
3+ interface DataTableProps {
4+ /** classes added to the table */
5+ class ?: string ;
6+ }
47
58declare class DataTable extends SvelteComponent < DataTableProps > { }
69
Original file line number Diff line number Diff line change 11import { SvelteComponent } from './shared' ;
22
3- interface DataTableBodyProps { }
3+ interface DataTableBodyProps {
4+ /** classes added to the table body */
5+ class ?: string ;
6+ }
47
58declare class DataTableBody extends SvelteComponent < DataTableBodyProps > { }
69
Original file line number Diff line number Diff line change 11import { SvelteComponent } from './shared' ;
22
33interface DataTableCellProps {
4+ /** classes added to the table cell */
5+ class ?: string ;
6+ /** whether the cell contains numeric values */
47 numeric ?: boolean ;
58}
69
Original file line number Diff line number Diff line change 11import { SvelteComponent } from './shared' ;
22
3- interface DataTableHeadProps { }
3+ interface DataTableHeadProps {
4+ /** classes added to the table head */
5+ class ?: string ;
6+ }
47
58declare class DataTableHead extends SvelteComponent < DataTableHeadProps > { }
69
Original file line number Diff line number Diff line change 11import { SvelteComponent } from './shared' ;
22
3- interface DataTableRowProps { }
3+ interface DataTableRowProps {
4+ /** classes added to the table row */
5+ class ?: string ;
6+ }
47
58declare class DataTableRow extends SvelteComponent < DataTableRowProps > { }
69
You can’t perform that action at this time.
0 commit comments