UNPKG

@dpkit/ckan

Version:

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

9 lines (8 loc) 374 B
import type { Resource } from "@dpkit/core"; import type { CkanResource } from "../Resource.js"; /** * Denormalizes a Frictionless Data Resource to CKAN Resource format * @param props Object containing the Resource to denormalize * @returns Denormalized CKAN Resource object */ export declare function denormalizeCkanResource(resource: Resource): Partial<CkanResource>;