@dpkit/ckan
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
9 lines (8 loc) • 361 B
TypeScript
import type { Resource } from "@dpkit/core";
import type { CkanResource } from "../Resource.js";
/**
* Normalizes a CKAN resource to Frictionless Data Resource format
* @param props Object containing the CKAN resource to normalize
* @returns Normalized Resource object
*/
export declare function normalizeCkanResource(ckanResource: CkanResource): Resource;