@dpkit/zenodo
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
13 lines (12 loc) • 339 B
TypeScript
import type { Descriptor } from "@dpkit/core";
export declare function makeZenodoApiRequest<T = Descriptor>(options: {
endpoint: string;
method?: "GET" | "POST" | "PUT" | "DELETE";
payload?: Descriptor;
upload?: {
name: string;
data: Blob;
};
apiKey?: string;
sandbox?: boolean;
}): Promise<T>;