@sap-ux/system-access
Version:
Reusable module allowing to access systems using the store or prompts.
15 lines • 576 B
TypeScript
import type { AxiosRequestConfig, ServiceInfo } from '@sap-ux/axios-extension';
import type { AuthenticationType } from '@sap-ux/store';
export interface UrlAbapTarget {
url: string;
client?: string;
scp?: boolean;
authenticationType?: AuthenticationType;
serviceKey?: ServiceInfo;
params?: AxiosRequestConfig['params'];
}
export interface DestinationAbapTarget {
destination: string;
}
export type AbapTarget = (UrlAbapTarget & Partial<DestinationAbapTarget>) | (DestinationAbapTarget & Partial<UrlAbapTarget>);
//# sourceMappingURL=types.d.ts.map