@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
14 lines (13 loc) • 444 B
TypeScript
import type { Snippet } from 'svelte';
declare const Table: import("svelte").Component<{
captionClass?: string;
class?: string;
style?: string;
caption?: string;
headers?: Array<Record<string, unknown>>;
rows?: Array<Record<string, unknown>>;
headersSlot?: Snippet<[Record<string, unknown>]>;
rowSlot?: Snippet<[Record<string, unknown>]>;
}, {}, "">;
type Table = ReturnType<typeof Table>;
export default Table;