UNPKG

primereact

Version:

A rich set of premium UI Components for React.

11 lines (10 loc) 377 B
export interface DataTableSortContextValue { field: string; isSorted: boolean; sortOrder: number; sortIndex: number; } export declare const DataTableSortProvider: ({ value, children }: { value: DataTableSortContextValue; children: React.ReactNode; }) => import("react").JSX.Element, useDataTableSortContext: () => DataTableSortContextValue | undefined;