mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
16 lines
467 B
TypeScript
16 lines
467 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface TableRowProps
|
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["tr"]> {}
|
|
|
|
export default class TableRow extends SvelteComponentTyped<
|
|
TableRowProps,
|
|
{
|
|
click: WindowEventMap["click"];
|
|
mouseover: WindowEventMap["mouseover"];
|
|
mouseenter: WindowEventMap["mouseenter"];
|
|
mouseleave: WindowEventMap["mouseleave"];
|
|
},
|
|
{ default: {} }
|
|
> {}
|