UNPKG

@fabrix/spool-cart

Version:

Spool - eCommerce Spool for Fabrix

36 lines (35 loc) 916 B
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common'; import { SequelizeResolver } from '@fabrix/spool-sequelize'; export declare class ItemAddress extends Model { static readonly resolver: typeof SequelizeResolver; static config(app: any, Sequelize: any): { options: { underscored: boolean; indexes: { fields: string[]; }[]; }; }; static schema(app: any, Sequelize: any): { id: { type: any; primaryKey: boolean; autoIncrement: boolean; }; address_id: { type: any; }; model: { type: any; }; model_id: { type: any; references: any; }; address: { type: any; defaultValue: string; }; }; static associate(models: any): void; }