UNPKG

vendure-import-products-plugin

Version:

- This plugin imports the products from the specified url every specified day.

10 lines (9 loc) 303 B
import { Type } from '@vendure/core'; export interface ProductImportPluginOptions { url: string; everyThisDay: number; } export declare class ProductImportPlugin { static options: ProductImportPluginOptions; static init(options: ProductImportPluginOptions): Type<ProductImportPlugin>; }