@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
13 lines (12 loc) • 386 B
TypeScript
import type { UnchainedCore } from '@unchainedshop/core';
export declare function ercMetadataHandler(request: Request, context: UnchainedCore & {
params: Record<string, string>;
locale?: Intl.Locale;
loaders?: {
productLoader: {
load: (params: {
productId: string;
}) => Promise<any>;
};
};
}): Promise<Response>;