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