UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

15 lines (14 loc) 344 B
export interface PypiJSONRelease { requires_python?: string; upload_time?: string; yanked?: boolean; } export type Releases = Record<string, PypiJSONRelease[]>; export interface PypiJSON { info: { name: string; home_page?: string; project_urls?: Record<string, string>; }; releases?: Releases; }