UNPKG

@dpkit/core

Version:

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

11 lines (10 loc) 308 B
import type { Package } from "./package/index.ts"; export interface Plugin { loadPackage?(source: string): Promise<Package | undefined>; savePackage?(dataPackage: Package, options: { target: string; withRemote?: boolean; }): Promise<undefined | { path?: string; }>; }