UNPKG

@fabrix/spool-cart

Version:

Spool - eCommerce Spool for Fabrix

27 lines (26 loc) 703 B
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common'; import { SequelizeResolver } from '@fabrix/spool-sequelize'; export declare class DiscountEvent extends Model { static readonly resolver: typeof SequelizeResolver; static config(app: any, Sequelize: any): { options: { underscored: boolean; }; }; static schema(app: any, Sequelize: any): { discount_id: { type: any; }; customer_id: { type: any; }; order_id: { type: any; }; price: { type: any; defaultValue: number; }; }; static associate(models: any): void; }