UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

4 lines (3 loc) 292 B
import type { AccessorFnColumnDef, AccessorKeyColumnDef } from "../table/solidTable"; export type RootColumnDef<T, D> = AccessorFnColumnDef<T, D> | AccessorKeyColumnDef<T, D>; export declare const getKeyFromRootColumnDef: <T, D>(column: RootColumnDef<T, D>, row: T, index: number) => string;