Adding a PayPalConfig environment type (#478)

* Adding a PayPalConfig environment type for the web vault

* Adding missing semicolon
This commit is contained in:
Joseph Flinn 2021-09-08 12:34:23 -07:00 committed by GitHub
parent ef743ea8ca
commit 5784a6d4fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@ export type Urls = {
enterprise?: string;
};
export type PayPalConfig = {
businessId?: string;
buttonAction?: string;
};
export abstract class EnvironmentService {
urls: Observable<Urls>;