@dpkit/core
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
24 lines (23 loc) • 687 B
TypeScript
import type { Package } from "./Package.ts";
/**
* Merges a system data package into a user data package if provided
*/
export declare function mergePackages(options: {
systemPackage: Package;
userPackagePath?: string;
}): Promise<{
[x: `${string}:${string}`]: any;
resources: import("../index.ts").Resource[];
name?: string;
$schema?: string;
title?: string;
description?: string;
homepage?: string;
version?: string;
licenses?: import("../index.ts").License[];
contributors?: import("./Contributor.ts").Contributor[];
sources?: import("../index.ts").Source[];
keywords?: string[];
created?: string;
image?: string;
}>;