UNPKG

@broadcom/endevor-for-zowe-cli

Version:

Endevor Plug-in for Zowe CLI

8 lines (7 loc) 712 B
import { Session } from "@zowe/imperative"; import { IElementBasicData, IEndevorRestResponse, IElementActionRequestOptions, TransferElmDictionary, IEndevorAsyncTask } from "../index"; export declare class TransferElement { static transferElement(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<void>>; static transferElementAsync(session: Session, instance: string, element: IElementBasicData, requestBody: IElementActionRequestOptions): Promise<IEndevorRestResponse<IEndevorAsyncTask>>; static setupTransferRequest(args: TransferElmDictionary, fromLocation: IElementBasicData): IElementActionRequestOptions; }