21 lines
388 B
TypeScript
21 lines
388 B
TypeScript
import * as plugins from '../plugins.js';
|
|
|
|
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;
|
|
}>;
|
|
};
|
|
}
|