import { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type $RestProps = SvelteHTMLElements["tr"]; type $Props = { children?: (this: void) => void; [key: `data-${string}`]: unknown; }; export type TableRowProps = Omit<$RestProps, keyof $Props> & $Props; export default class TableRow extends SvelteComponentTyped< TableRowProps, { click: WindowEventMap["click"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; mouseover: WindowEventMap["mouseover"]; }, { default: Record } > {}