UNPKG

@dpkit/table

Version:

Data Package implementation in TypeScript.

9 lines (8 loc) 291 B
import type { Schema } from "@dpkit/core"; import type { TableError } from "../error/Table.ts"; import type { Table } from "../table/Table.ts"; export declare function validateRows(schema: Schema, errorTable: Table): { valid: boolean; errors: TableError[]; errorTable: Table; };