---
title: IdentityOptions
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.2/packages/data-table/src/lib/adapter.ts#L197
---

# IdentityOptions

## Summary

Options for configuring identity column generation.

## Signature

```ts
type IdentityOptions = {
  always?: boolean;
  increment?: number;
  start?: number;
};

```