libs/core/src/lib/services/taly-api-communication.service.ts
Helper service to integrate API calls with external systems like PFE.
Best used with an actual implementation like the PfeApiCommunicationService
.
Provide it in your app root module.
{ provide: TalyApiCommunicationService, useClass: PfeApiCommunicationService }
Properties |
name | |
Type |
string
|
export interface PreconfiguredApiRequestData {
name: string;
}
export abstract class TalyApiCommunicationService {
abstract triggerApiRequest(data: PreconfiguredApiRequestData): Promise<unknown>;
}