1 export const chargebeeWrapperVersion = '1.2.0';
3 export type Checkpoint = {
8 const checkpoints: Checkpoint[] = [];
10 export function addCheckpoint(name: string, data?: any) {
11 checkpoints.push({ name, data });
14 export function getCheckpoints() {