@broadcom/endevor-for-zowe-cli
Version:
Endevor Plug-in for Zowe CLI
9 lines (8 loc) • 888 B
TypeScript
import { Session } from "@zowe/imperative";
import { IElementBasicData, IEndevorRestResponse, IElementActionRequestOptions, PrintElmCompDictionary, EncodingDictionary, IEndevorAsyncTask } from "../index";
export declare class PrintElementComponents {
static setupPrintRequest(args: PrintElmCompDictionary & EncodingDictionary, components: boolean): IElementActionRequestOptions;
static printElementComponents(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions, components: boolean, charset?: string): Promise<IEndevorRestResponse<string>>;
static printElementComponentsAsync(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions, components: boolean, charset?: string): Promise<IEndevorRestResponse<IEndevorAsyncTask>>;
private static printElementComponentsImpl;
}