@dpkit/core
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
9 lines (8 loc) • 298 B
TypeScript
import type { Descriptor } from "../general/index.ts";
import type { Package } from "./Package.ts";
/**
* Assert a Package descriptor (JSON Object) against its profile
*/
export declare function assertPackage(source: Descriptor | Package, options?: {
basepath?: string;
}): Promise<Package>;