UNPKG

@dpkit/table

Version:

Data Package implementation in TypeScript.

11 lines (8 loc) 228 B
import type { BaseTableError } from "./Base.ts" export interface BaseRowError extends BaseTableError { rowNumber: number } export interface RowUniqueError extends BaseRowError { type: "row/unique" fieldNames: string[] }