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 = {
name: '@serve.zone/interfaces',
version: '1.0.43',
version: '1.0.44',
description: 'interfaces for working with containers'
}

View File

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