@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
14 lines (11 loc) • 366 B
text/typescript
import type {BasicParams} from '../../../types';
import {authenticateExtensionFactory} from '../extension/authenticate';
import type {AuthenticateCheckout} from './types';
export function authenticateCheckoutFactory(
params: BasicParams,
): AuthenticateCheckout {
return authenticateExtensionFactory(
params,
'checkout',
) as AuthenticateCheckout;
}