@climatepartner/climatepartner-api-sdk
Version:
The ClimatePartner API provides one uniform public API to customers of ClimatePartner.
17 lines (16 loc) • 688 B
TypeScript
import { CalculationService } from './calculation';
import { CommunicationService } from './communication';
import { HealthcheckService } from './healthcheck';
import { OrderService } from './order';
import { StsService } from './sts';
import { UnifiedApiConfiguration } from './types';
export declare class UnifiedApi {
#private;
constructor(options: UnifiedApiConfiguration);
getStsService: () => StsService;
getHealthcheckService: () => HealthcheckService;
getOrderService: () => OrderService;
getCalculationService: () => CalculationService;
getCommunicationService: () => CommunicationService;
}
export declare const ClimatePartnerApi: typeof UnifiedApi;