Adding a PayPalConfig environment type (#478)
* Adding a PayPalConfig environment type for the web vault * Adding missing semicolon
This commit is contained in:
parent
ef743ea8ca
commit
5784a6d4fc
|
@ -11,6 +11,11 @@ export type Urls = {
|
||||||
enterprise?: string;
|
enterprise?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type PayPalConfig = {
|
||||||
|
businessId?: string;
|
||||||
|
buttonAction?: string;
|
||||||
|
};
|
||||||
|
|
||||||
export abstract class EnvironmentService {
|
export abstract class EnvironmentService {
|
||||||
urls: Observable<Urls>;
|
urls: Observable<Urls>;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue