UNPKG

react-native-klarna-inapp-sdk

Version:

This library wraps Klarna Mobile SDK and exposes its functionality as React Native components.

14 lines (11 loc) 377 B
export namespace KlarnaExpressCheckoutSessionOptions { export interface ClientSideSession { readonly clientId: string; } export interface ServerSideSession { readonly clientToken: string; } } export type KlarnaExpressCheckoutSessionOptions = | KlarnaExpressCheckoutSessionOptions.ClientSideSession | KlarnaExpressCheckoutSessionOptions.ServerSideSession;