UNPKG

@dpkit/core

Version:

Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames

9 lines (8 loc) 311 B
import { type Descriptor } from "../general/index.js"; import type { Package } from "./Package.js"; /** * Assert a Package descriptor (JSON Object) against its profile */ export declare function assertPackage(descriptorOrPackage: Descriptor | Package, options?: { basepath?: string; }): Promise<Package>;