UNPKG

irradiant-svelte

Version:

Easily build sleek, minimalistic web apps with this easy to use and powerful svelte component library.

30 lines (24 loc) 566 B
/// <reference types="svelte" /> export interface TableRowProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["tr"]> { /** * User defined classes * @default "" */ className?: string; /** * Disables all default styling, allowing you to further customize the component * @default false */ styled?: boolean; /** * @default "dark" */ theme?: string; } export default class TableRow { $$prop_def: TableRowProps; $$slot_def: { default: {}; }; $on(eventname: string, cb: (event: Event) => void): () => void; }