UNPKG

@dpkit/core

Version:

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

9 lines (8 loc) 253 B
import type { Descriptor } from "./Descriptor.js"; /** * Save a descriptor (JSON Object) to a file path * Works in Node.js environments */ export declare function saveDescriptor(descriptor: Descriptor, options: { path: string; }): Promise<void>;