@juspay/blaze-sdk-web
Version:
SDK for integrating Breeze 1CCO into your Web Application
11 lines (10 loc) • 424 B
TypeScript
import type { CallbackFn } from './types';
declare function initiate(payload: Record<string, unknown>, callbackFn: CallbackFn, containerLayout?: HTMLDivElement | null): void;
declare function process(payload: Record<string, unknown>): void;
declare function terminate(): void;
declare const _default: {
initiate: typeof initiate;
process: typeof process;
terminate: typeof terminate;
};
export default _default;