@dpkit/zenodo
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
32 lines (27 loc) • 335 B
text/typescript
/**
* 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
}
}