irradiant-svelte
Version:
Easily build sleek, minimalistic web apps with this easy to use and powerful svelte component library.
25 lines (20 loc) • 518 B
TypeScript
/// <reference types="svelte" />
export interface TableCellProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["td"]> {
/**
* User defined classes
* @default ""
*/
className?: string;
/**
* Disables all default styling, allowing you to further customize this component
* @default false
*/
styled?: boolean;
}
export default class TableCell {
$$prop_def: TableCellProps;
$$slot_def: {
default: {};
};
$on(eventname: string, cb: (event: Event) => void): () => void;
}