UNPKG

@dpkit/core

Version:

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

14 lines (11 loc) 297 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 }> }