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

5 lines (4 loc) 291 B
export declare const nonNull: <T>(value: T | null) => value is T; export declare const nonUndefined: <T>(value: T | undefined) => value is T; export declare const nonNullish: <T>(value: T | null | undefined) => value is T; export declare const isNumber: (value: unknown) => value is number;