UNPKG

@habit.analytics/habit-smartlink-reactcomponent

Version:

A React component for Habit SmartLink integration.

8 lines 323 B
import { SMARTLINK_BASE_URL } from "./constants"; export type Environment = keyof typeof SMARTLINK_BASE_URL; export interface PrePaymentMethodResponse { success: boolean; payment_id: string; } export type PrePaymentMethod = (quoteId: string) => Promise<PrePaymentMethodResponse>; //# sourceMappingURL=types.d.ts.map