@buckaroo/buckaroo_sdk
Version:
Buckaroo payment SDK
20 lines (19 loc) • 522 B
TypeScript
import { ServiceCode } from './MethodTypes';
export declare interface IConfig {
mode: Mode;
currency: string;
continueOnIncomplete?: 0 | 1;
returnURL?: string;
returnURLCancel?: string;
pushURL?: string;
returnURLError?: string;
returnURLReject?: string;
activePaymentMethods?: ServiceCode[];
disabledPaymentMethods?: ServiceCode[];
timeout?: number;
}
export declare interface ICredentials {
websiteKey: string;
secretKey: string;
}
export type Mode = 'LIVE' | 'TEST';