Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

XPSTableSpec

import type { XPSTableSpec } from "https://googleapis.deno.dev/v1/language:v2.ts";
interface XPSTableSpec {
columnSpecs?: {
[key: string]: XPSColumnSpec;
}
;
importedDataSizeInBytes?: bigint;
rowCount?: bigint;
timeColumnId?: number;
validRowCount?: bigint;
}

§Properties

§
columnSpecs?: {
[key: string]: XPSColumnSpec;
}
[src]

Mapping from column id to column spec.

§
importedDataSizeInBytes?: bigint
[src]

The total size of imported data of the table.

§
rowCount?: bigint
[src]

The number of rows in the table.

§
timeColumnId?: number
[src]

The id of the time column.

§
validRowCount?: bigint
[src]

The number of valid rows.