UNPKG

@habit.analytics/habit-smartlink-reactcomponent

Version:

A React component for Habit SmartLink integration.

13 lines (9 loc) 291 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>;