UNPKG

@broadcom/endevor-for-zowe-cli

Version:

Endevor Plug-in for Zowe CLI

8 lines (7 loc) 679 B
import { Session } from "@zowe/imperative"; import { IElementBasicData, IEndevorRestResponse, IElementActionRequestOptions, GenerateElmDictionary, IEndevorAsyncTask } from "../index"; export declare class GenerateElement { static setupGenerateRequest(args: GenerateElmDictionary): IElementActionRequestOptions; static generateElement(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<void>>; static generateElementAsync(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<IEndevorAsyncTask>>; }