@paydock/client-sdk
Version:
Paydock client sdk
14 lines • 458 B
TypeScript
import { HttpCore } from '../components/http-core';
export interface IDetails {
checkout_email: string;
checkout_holder: string;
status: string;
gateway_type: string;
}
export declare class Checker extends HttpCore {
token: string;
constructor(token: string);
protected getLink(): string;
send(accessToken: string, cb: (details: IDetails) => void, errorCb?: (error: any) => void): void;
}
//# sourceMappingURL=checker.d.ts.map