UNPKG

@fabrix/spool-cart

Version:

Spool - eCommerce Spool for Fabrix

44 lines (43 loc) 1.1 kB
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common'; import { SequelizeResolver } from '@fabrix/spool-sequelize'; export declare class Refund extends Model { static readonly resolver: typeof SequelizeResolver; static config(app: any, Sequelize: any): { options: { underscored: boolean; scopes: { live: { where: { live_mode: boolean; }; }; }; hooks: {}; }; }; static schema(app: any, Sequelize: any): { order_id: { type: any; }; transaction_id: { type: any; }; amount: { type: any; defaultValue: number; }; processed_at: { type: any; defaultValue: any; }; restock: { type: any; defaultValue: any; }; live_mode: { type: any; defaultValue: any; }; }; static associate(models: any): void; }