8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
import * as interfaces from './';
|
|
|
|
export interface IServiceCreationDescriptor {
|
|
Name: string;
|
|
Image: string;
|
|
Labels: interfaces.TLabels;
|
|
}
|