mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
17 lines
328 B
TypeScript
17 lines
328 B
TypeScript
/* tslint:disable */
|
|
import { Injectable } from '@angular/core';
|
|
|
|
/**
|
|
* Global configuration for Checkout services
|
|
*/
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class CheckoutConfiguration {
|
|
rootUrl: string = 'https://isa-test.paragon-data.net';
|
|
}
|
|
|
|
export interface CheckoutConfigurationInterface {
|
|
rootUrl?: string;
|
|
}
|