projects/angular-client-sdk/src/lib/interfaces/popup-config.interface.ts
Configuration for checkout popup
Properties |
| height |
height:
|
Type : number
|
| title |
title:
|
Type : string
|
| url |
url:
|
Type : string
|
| width |
width:
|
Type : number
|
export interface PaperPopupConfig {
url: string;
title: string;
width: number;
height: number;
}