blob: be8aaea75d14e496eb8a023c90b9d9a787407644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { state } from '@angular/core';
/**
* Created by ob0695 on 4/23/2018.
*/
export interface IDependenciesServerResponse {
icon: string;
name: string;
type: string;
uniqueId: string;
version: string;
state: string;
dependencies: Array<IDependenciesServerResponse>;
instanceNames: Array<string>;
}
|