UNPKG

@dpkit/table

Version:

Data Package implementation in TypeScript.

12 lines (11 loc) 363 B
import type { Field } from "@dpkit/core"; import type { TableError } from "../error/index.ts"; import type { Table } from "../table/index.ts"; import type { PolarsField } from "./Field.ts"; export declare function inspectField(field: Field, options: { errorTable: Table; polarsField: PolarsField; }): { errors: TableError[]; errorTable: Table; };