UNPKG

@zowe/core-for-zowe-sdk

Version:

Core libraries shared by Zowe SDK packages

17 lines 504 B
import { IBaseProfileOverride } from ".."; import { IAltProfile } from "./IAltProfile"; /** * As part of the auto-init output report, this structure * represents the set of profiles created or modified by * the auto-init command. */ export interface IProfileRpt { changeForProf: string; profName: string; profType: string; basePath: string; pluginNms: string[]; altProfiles: IAltProfile[]; baseOverrides: IBaseProfileOverride[]; } //# sourceMappingURL=IProfileRpt.d.ts.map