dap-design-system
Version:
Official design system for the DÁP (dap.gov.hu)
12 lines (11 loc) • 507 B
TypeScript
/**
* Public type definitions for the datatable component
* These types help users create type-safe column definitions
*/
export type { CellContent, CellContentValue, HtmlCellContent, RenderCallbackContent, StyledCellContent, } from './cell-content';
export type { CellContext, ColumnDef } from '@tanstack/lit-table';
/**
* Extended column definition with additional DDS-specific properties
* @template T - The data type for the row
*/
export type { ExtendedColumnDef } from '../datatable.component';