UNPKG

@fabrix/spool-cart

Version:

Spool - eCommerce Spool for Fabrix

44 lines (43 loc) 1.17 kB
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common'; import { SequelizeResolver } from '@fabrix/spool-sequelize'; export declare class ProductReviewUploadResolver extends SequelizeResolver { batch(options: any, batch: any): any; } export declare class ProductReviewUpload extends Model { static readonly resolver: typeof ProductReviewUploadResolver; static config(app: any, Sequelize: any): { options: { underscored: boolean; }; }; static schema(app: any, Sequelize: any): { upload_id: { type: any; allowNull: boolean; }; product_handle: { type: any; allowNull: boolean; set: (val: any) => void; }; product_sku: { type: any; allowNull: boolean; set: (val: any) => void; }; email: { type: any; }; review: { type: any; }; score: { type: any; }; live_mode: { type: any; defaultValue: any; }; }; static associate(models: any): void; }