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