aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/connectApp/src/models/mountedNetworkElements.ts
blob: 4ab7c8e20d634ab283ae1331a5dbf72893f59599 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { NetworkElementBaseType } from "./networkElementBase";

/**
* Represents data of an mounted network elements.
*/
export type MountedNetworkElementType = NetworkElementBaseType & {
  connectionStatus: string;
  required: boolean;
  capabilities: { module: string, revision: string }[];
};