Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/components/blocks/table/use-table.ts>TableProps

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
type alias TableProps
import { type TableProps } from "https://deno.land/x/netzo@0.4.40/components/blocks/table/use-table.ts";

Type Parameters

optional
TData = unknown
optional
TValue = unknown
definition: { data: TData[]; options: { resource: string; fieldIds: { id: string; name?: string; description?: string; group?: string; image?: string; }; search?: { column: string; placeholder: string; }; filters?: { column: string; title: string; options: { label: string; value: string; }[]; }[]; layouts: { grid?: Record<string | number | symbol, never>; gallery?: Record<string | number | symbol, never>; kanban?: Record<string | number | symbol, never>; }; }; columns: ColumnDef<TData, TValue>[]; }