@sap/adp-abap
Version:
abap service for all yeoman generators
29 lines (28 loc) • 595 B
TypeScript
export interface Destination {
Name: string;
Host: string;
WebIDEUsage: string;
Authentication: string;
ProxyType: string;
"sap-client": string;
}
export interface DestinationError {
message: string;
}
export interface DestinationInfo {
adaptationProjectTypes: string[];
activeLanguages: Language[];
}
interface Language {
sap: string;
description: string;
i18n: string;
}
export interface LocalDestinationAuthDetails {
username: string;
password: string;
url: string;
client: string;
authenticationType?: string;
}
export {};