@serve.zone/interfaces
Version:
interfaces for working with containers
19 lines (18 loc) • 418 B
TypeScript
export interface IImage {
id: string;
data: {
name: string;
location: {
internal: boolean;
externalRegistryId: string;
externalImageTag: string;
};
description: string;
versions: Array<{
versionString: string;
storagePath?: string;
size: number;
createdAt: number;
}>;
};
}