UNPKG

@dpkit/zip

Version:

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

11 lines (10 loc) 334 B
import type { Package, Plugin } from "@dpkit/core"; export declare class ZipPlugin implements Plugin { loadPackage(source: string): Promise<Package | undefined>; savePackage(dataPackage: Package, options: { target: string; withRemote?: boolean; }): Promise<{ path: undefined; } | undefined>; }