@dpkit/zenodo
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
14 lines (13 loc) • 387 B
TypeScript
import type { Package } from "@dpkit/core";
/**
* Save a package to Zenodo
* @param options Object containing the package to save and Zenodo API details
* @returns Object with the deposit URL and DOI
*/
export declare function savePackageToZenodo(dataPackage: Package, options: {
sandbox?: boolean;
apiKey: string;
}): Promise<{
path: string;
datasetUrl: string;
}>;