UNPKG

@dpkit/ckan

Version:

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

12 lines (11 loc) 284 B
import type { Descriptor } from "@dpkit/core"; export declare function makeCkanApiRequest<T = Descriptor>(options: { ckanUrl: string; action: string; payload: Descriptor; upload?: { name: string; data: Blob; }; apiKey?: string; }): Promise<T>;