UNPKG

@dpkit/core

Version:

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

9 lines (8 loc) 235 B
import type { Package } from "./Package.ts"; /** * Save a Package to a file path * Works in Node.js environments */ export declare function savePackageDescriptor(dataPackage: Package, options: { path: string; }): Promise<void>;