UNPKG

@humanspeak/svelte-headless-table

Version:

A powerful, headless table library for Svelte that provides complete control over table UI while handling complex data operations like sorting, filtering, pagination, grouping, and row expansion. Build custom, accessible data tables with zero styling opin

8 lines (7 loc) 208 B
/** * A two-dimensional array (matrix) type. * Used for header row/column matrices and other grid-like structures. * * @template T - The type of elements in the matrix. */ export type Matrix<T> = T[][];