fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-31 15:14:08 +02:00
parent f23ffe8bed
commit 351a5da031
3 changed files with 10 additions and 1 deletions

View File

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

View File

@ -12,4 +12,5 @@ export * from './server.js';
export * from './service.js';
export * from './status.js';
export * from './traffic.js';
export * from './user.js';
export * from './version.js';

8
ts/data/user.ts Normal file
View File

@ -0,0 +1,8 @@
export interface IUser {
id: string;
data: {
role: 'admin' | 'user';
username: string;
password: string;
}
}