UNPKG

@dpkit/core

Version:

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

21 lines (18 loc) 282 B
/** * License information */ export interface License { /** * The name of the license * @example "MIT", "Apache-2.0" */ name?: string /** * A URL to the license text */ path?: string /** * Human-readable title of the license */ title?: string }