type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;Defined in: packages/lit-table/src/createTableHook.ts:49
Enhanced CellContext with pre-bound cell components. The cell property includes the registered cellComponents.
TFeatures extends TableFeatures
TData extends RowData
TValue extends CellData
TCellComponents extends Record<string, ComponentType<any>>
cell: Cell<TFeatures, TData, TValue> & BoundComponents<TCellComponents> & object;Defined in: packages/lit-table/src/createTableHook.ts:55
FlexRender: () => LitRenderable;column: Column<TFeatures, TData, TValue>;Defined in: packages/lit-table/src/createTableHook.ts:59
getValue: CellContext<TFeatures, TData, TValue>["getValue"];Defined in: packages/lit-table/src/createTableHook.ts:60
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];Defined in: packages/lit-table/src/createTableHook.ts:61
row: Row<TFeatures, TData>;Defined in: packages/lit-table/src/createTableHook.ts:62
table: Table<TFeatures, TData>;Defined in: packages/lit-table/src/createTableHook.ts:63