hn-ts
Version:
TypeScript client for the Hacker News API
13 lines (11 loc) • 341 B
text/typescript
/**
* `Updated` contains the latest changes for items and user profiles.
*
* @see {@link https://github.com/HackerNews/API#changed-items-and-profiles}
*/
export interface Updated {
/** List of IDs for the updated items */
readonly items: number[];
/** List of IDs for the updated user profiles */
readonly profiles: string[];
}