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