fix(core): update

This commit is contained in:
Philipp Kunz 2024-03-03 18:15:00 +01:00
parent 5b07dd3377
commit 065d9b2e4b
2 changed files with 10 additions and 7 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/interfaces', name: '@serve.zone/interfaces',
version: '1.0.43', version: '1.0.44',
description: 'interfaces for working with containers' description: 'interfaces for working with containers'
} }

View File

@ -1,10 +1,13 @@
import * as plugins from '../plugins.js'; import * as plugins from '../plugins.js';
export interface IImage { export interface IImage {
name: string; id: string;
description: string; data: {
versions: Array<{ name: string;
version: string; description: string;
storagePath?: string; versions: Array<{
}>; version: string;
storagePath?: string;
}>;
};
} }