UNPKG

@shopify/shopify-app-remix

Version:

Shopify Remix - to simplify the building of Shopify Apps with Remix

9 lines (6 loc) 318 B
import {BasicParams} from '../../../types'; import {authenticateExtensionFactory} from '../extension/authenticate'; import type {AuthenticatePOS} from './types'; export function authenticatePOSFactory(params: BasicParams): AuthenticatePOS { return authenticateExtensionFactory(params, 'pos') as AuthenticatePOS; }