@fast-simon/storefront-kit
Version:
A comprehensive kit for developing storefronts with Fast Simon components, utilities, and React/Hydrogen support.
10 lines (9 loc) • 447 B
TypeScript
import { type LoaderFunctionArgs } from '@shopify/remix-oxygen';
export declare const fastSimonTrackingUtils: {
getViewedProducts: ({ request, context }: LoaderFunctionArgs & any) => import("@shopify/remix-oxygen").TypedResponse<{
visitedProducts: any;
}>;
setPersonalizationData: ({ request, context }: LoaderFunctionArgs & any) => Promise<import("@shopify/remix-oxygen").TypedResponse<{
success: boolean;
}>>;
};