UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

7 lines (6 loc) 233 B
import { SortState } from "./types.js"; export interface TableContextProps { onSortChange?: (sortKey: string) => void; sort?: SortState; } export declare const TableContext: import("react").Context<TableContextProps | null>;