@zowe/core-for-zowe-sdk
Version:
Core libraries shared by Zowe SDK packages
19 lines • 561 B
TypeScript
import { IApimlServiceApiInfo } from "./IApimlServiceApiInfo";
import { IApimlServiceAuthentication } from "./IApimlServiceAuthentication";
export interface IApimlService {
serviceId: string;
status: "DOWN" | "UP";
apiml: {
apiInfo: IApimlServiceApiInfo[];
service: {
title: string;
description: string;
homePageUrl: string;
};
authentication: IApimlServiceAuthentication[];
};
instances: {
[key: string]: any;
}[];
}
//# sourceMappingURL=IApimlService.d.ts.map