UNPKG

@dpkit/zenodo

Version:

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

28 lines (27 loc) 383 B
/** * Zenodo File interface */ export interface ZenodoResource { /** * File identifier */ id: string; /** * File key */ key: string; /** * File size in bytes */ size: number; /** * File checksum */ checksum: string; /** * Links related to the file */ links: { self: string; }; }