/** * Author: * xtbj@cn.ibm.com */ import { IHandlerParameters, ICommandHandler } from "@zowe/imperative"; /** * Command handler for NetView logout * @export * @class NVCommandHandler * @implements {ICommandHandler} */ export default class LogoutHandler implements ICommandHandler { process(params: IHandlerParameters): Promise; }