mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-12 23:23:48 -05:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
export type Data = {
|
|
metrics: {
|
|
monitored_images: number;
|
|
up_to_date: number;
|
|
update_available: number;
|
|
unknown: number;
|
|
};
|
|
images: {
|
|
[key: string]: boolean | null;
|
|
};
|
|
last_updated: string;
|
|
};
|