@dpkit/table
Version:
Data Package implementation in TypeScript.
9 lines (8 loc) • 304 B
TypeScript
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[]>;