UNPKG

@fabrix/spool-cart

Version:

Spool - eCommerce Spool for Fabrix

36 lines (35 loc) 917 B
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common'; import { SequelizeResolver } from '@fabrix/spool-sequelize'; export declare class CustomerSource extends Model { static readonly resolver: typeof SequelizeResolver; static config(app: any, Sequelize: any): { options: { underscored: boolean; }; }; static schema(app: any, Sequelize: any): { id: { type: any; primaryKey: boolean; autoIncrement: boolean; }; source_id: { type: any; unique: string; }; source: { type: any; unique: string; }; account_id: { type: any; unique: string; references: any; }; customer_id: { type: any; unique: string; references: any; }; }; }