UNPKG

@tanstack/svelte-table

Version:

Headless UI for building powerful tables & datagrids for Svelte.

10 lines (9 loc) 262 B
import type { Snippet } from 'svelte'; interface Props { cell: any; cellComponents: any; children: Snippet<[any]>; } declare const AppCell: import("svelte").Component<Props, {}, "">; type AppCell = ReturnType<typeof AppCell>; export default AppCell;