@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
25 lines (20 loc) • 633 B
text/typescript
import '@shopify/shopify-api/adapters/web-api';
import {setAbstractRuntimeString} from '@shopify/shopify-api/runtime';
setAbstractRuntimeString(() => {
return `Remix`;
});
export {
LogSeverity,
DeliveryMethod,
BillingInterval,
BillingReplacementBehavior,
ApiVersion,
Session,
} from '@shopify/shopify-api';
export type {JwtPayload} from '@shopify/shopify-api';
export type * from './types-contexts';
export type {ShopifyApp, LoginError} from './types';
export {LoginErrorType, AppDistribution} from './types';
export {boundary} from './boundary';
export {shopifyApp} from './shopify-app';
export * from './errors';