# assignTableAPIs

# Function: assignTableAPIs()

```ts
function assignTableAPIs<TFeatures, TData, TDeps, TDepArgs>(
   feature,
   table,
   apis): void;
```

Defined in: [utils.ts:544](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L544)

Assigns Table API methods directly to the table instance.
Unlike row/cell/column/header, the table is a singleton so methods are assigned directly.

## Type Parameters

### TFeatures

`TFeatures` *extends* [`TableFeatures`](../interfaces/TableFeatures.md)

### TData

`TData` *extends* [`RowData`](../type-aliases/RowData.md)

### TDeps

`TDeps` *extends* readonly `any`[]

### TDepArgs

`TDepArgs`

## Parameters

### feature

keyof `TFeatures` & `string`

### table

[`Table_Internal`](../interfaces/Table_Internal.md)\<`TFeatures`, `TData`\>

### apis

[`APIObject`](../type-aliases/APIObject.md)\<`TDeps`, [`NoInfer`](../type-aliases/NoInfer.md)\<`TDepArgs`\>\>

## Returns

`void`
