UNPKG

@dpkit/core

Version:

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

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