UNPKG

@sap/subaccount-destination-service-provider

Version:

Provide service consumption of SAP subaccount services

9 lines (8 loc) 731 B
import { RawBusinessItem } from "../types/moveToBase"; import { ProviderDestination, RawDestination } from "@sap/service-provider-apis"; import { AxiosResponse } from "axios"; export declare function handleBusinessItemsStream<T>(filePath: string, itemProcessor: (value: RawBusinessItem, stopCallback: () => void) => void, endProcessor: () => T): Promise<unknown>; export declare function filterDestinationWebideEnabled(destinationConfiguration: RawDestination | ProviderDestination): boolean; export declare function htmlResponseInterceptor(response: AxiosResponse): AxiosResponse; export declare function isHtmlResponse(response: AxiosResponse): boolean; export declare function isHtmlLoginForm(response: AxiosResponse): boolean;