fix(core): update

This commit is contained in:
2019-08-16 12:48:40 +02:00
parent f772ca15ef
commit b2a7e67868
5 changed files with 57 additions and 3 deletions

View File

@ -3,3 +3,5 @@ export * from './image';
export * from './label';
export * from './network';
export * from './port';
export * from './service';

7
ts/interfaces/service.ts Normal file
View File

@ -0,0 +1,7 @@
import * as interfaces from './'
export interface IServiceCreationDescriptor {
Name: string;
Image: string;
Labels: interfaces.TLabels;
}