UNPKG

@ui5/task-adaptation

Version:

Custom task for ui5-builder which allows building UI5 Flexibility Adaptation Projects for SAP BTP, Cloud Foundry environment

8 lines (7 loc) 336 B
import { AxiosRequestConfig } from "axios"; export default class RequestUtil { static head(url: string): Promise<any>; static get(url: string, options?: any): Promise<any>; static request(url: string, method: (url: string, config?: AxiosRequestConfig) => any, options?: any): Promise<any>; private static handleError; }