UNPKG

@dpkit/table

Version:

Data Package implementation in TypeScript.

9 lines (8 loc) 304 B
import type { Schema } from "@dpkit/core"; import type { TableError } from "../error/index.ts"; import type { Table } from "./Table.ts"; export declare function inspectTable(table: Table, options?: { schema?: Schema; sampleRows?: number; invalidRowsLimit?: number; }): Promise<TableError[]>;