+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "TableData"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## TableData interface
Signature
```typescript
export interface TableData extends QueryResultBase
```
Import
```typescript
import { TableData } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [columns](#columns-property) | Column[]
| |
| [name](#name-property) | string
| |
| [rows](#rows-property) | any[][]
| |
| [type](#type-property) | string
| |
### columns property
Signature
```typescript
columns: Column[];
```
### name property
Signature
```typescript
name?: string;
```
### rows property
Signature
```typescript
rows: any[][];
```
### type property
Signature
```typescript
type?: string;
```