UNPKG

@tanstack/table-core

Version:

Headless UI for building powerful tables & datagrids for TS/JS.

12 lines (11 loc) 398 B
import { SortingFn } from './features/RowSorting'; export declare const reSplitAlphaNumeric: RegExp; export declare const sortingFns: { alphanumeric: SortingFn<any>; alphanumericCaseSensitive: SortingFn<any>; text: SortingFn<any>; textCaseSensitive: SortingFn<any>; datetime: SortingFn<any>; basic: SortingFn<any>; }; export type BuiltInSortingFn = keyof typeof sortingFns;