docker/ts/interfaces/service.ts

8 lines
146 B
TypeScript
Raw Normal View History

2019-08-16 10:48:56 +00:00
import * as interfaces from './';
2019-08-16 10:48:40 +00:00
export interface IServiceCreationDescriptor {
Name: string;
Image: string;
Labels: interfaces.TLabels;
2019-08-16 10:48:56 +00:00
}