react-native-klarna-inapp-sdk
Version:
React Native package for Klarna Mobile SDK.
14 lines (11 loc) • 377 B
text/typescript
export namespace KlarnaExpressCheckoutSessionOptions {
export interface ClientSideSession {
readonly clientId: string;
}
export interface ServerSideSession {
readonly clientToken: string;
}
}
export type KlarnaExpressCheckoutSessionOptions =
| KlarnaExpressCheckoutSessionOptions.ClientSideSession
| KlarnaExpressCheckoutSessionOptions.ServerSideSession;