@portone/browser-sdk
Version:
PortOne SDK for browser
34 lines (33 loc) • 585 B
TypeScript
/**
* 결제창 UI 설정
*/
export type InicisJpPaymentUI = {
/**
* **결제창 색상**
*
* 가능한 값:
*
* - `red1`
* - `red2`
* - `red3`
* - `red4`
* - `orange`
* - `yellow`
* - `black`
* - `purple`
* - `green`
* - `blue1`
* - `blue2`
* - `blue3`
* - `blue4`
* - `blue5`
* - `blue6`
*/
colorTheme?: string | undefined;
/**
* **가맹점 로고 이미지 URL**
*
* 69 \* 20 픽셀 크기의 이미지 URL
*/
logoUrl?: string | undefined;
};