---
title: Table
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.3/packages/data-table/src/lib/table.ts#L267
---

# Table

## Summary

Fully-typed table object returned by [`table`](/api/remix/data-table/function/table/).

## Signature

```ts
type Table<name, columns, primaryKey> = TableMetadataLike<
  name,
  columns,
  primaryKey,
  TimestampConfig | null
> & {
  [tableMetadataKey]: TableMetadata<name, columns, primaryKey>;
} & TableColumnReferences<name, columns>;

```