FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
types
/
store
/
checkouts
Edit File: mutations.d.ts
import { Checkout } from "../../types"; /** Get the checkout. */ export declare const getCheckout: (formId: number | string, mode: 'live' | 'test') => any; /** Set the checkout. */ export declare const setCheckout: (data: Checkout, formId: number | string) => void; /** Clear the order from the store. */ export declare const clearCheckout: (formId: number | string, mode: 'live' | 'test', checkoutId?: string) => void;
Save
Back