chargebee-js
Version:
Javascript Client SDK to implement Chargebee on frontend.
16 lines (11 loc) • 320 B
TypeScript
export * from "./chargebee";
import { ChargebeeConfig, ChargebeeInstance, Chargebee } from "./chargebee";
export const loadChargebee: LoadChargebee;
export type LoadChargebee = (
config: ChargebeeConfig
) => Promise<ChargebeeInstance | null>;
declare global {
interface Window {
Chargebee?: Chargebee;
}
}