UNPKG

@messari/cli

Version:

Messari Crypto CLI (mcrypto) is a tool for getting cryptocurrency market data, news, and more!

20 lines (19 loc) 381 B
export interface Reference { name: string; url: string; } export interface Author { name: string; } export interface News { id: string; title: string; content: string; references: Reference[]; reference_title: string; published_at: Date; author: Author; tags: string[]; url: string; } export declare type NewsArticles = Array<News>;