import type { AxiosRequestConfig, ServiceInfo } from '@sap-ux/axios-extension'; import type { AuthenticationType } from '@sap-ux/store'; export interface UrlAbapTarget { url: string; connectPath?: string; client?: string; scp?: boolean; authenticationType?: AuthenticationType; serviceKey?: ServiceInfo; params?: AxiosRequestConfig['params']; } export interface DestinationAbapTarget { destination: string; } export type AbapTarget = (UrlAbapTarget & Partial) | (DestinationAbapTarget & Partial); //# sourceMappingURL=types.d.ts.map