UNPKG

@fabrix/spool-cart

Version:

Spool - eCommerce Spool for Fabrix

49 lines (48 loc) 1.19 kB
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common'; import { SequelizeResolver } from '@fabrix/spool-sequelize'; export declare class Province extends Model { static readonly resolver: typeof SequelizeResolver; static config(app: any, Sequelize: any): { options: { underscored: boolean; scopes: { live: { where: { live_mode: boolean; }; }; }; }; }; static schema(app: any, Sequelize: any): { code: { type: any; }; name: { type: any; }; tax_rate: { type: any; defaultValue: number; }; tax_percentage: { type: any; defaultValue: number; }; tax_type: { type: any; }; tax_name: { type: any; }; position: { type: any; defaultValue: number; }; live_mode: { type: any; defaultValue: any; }; }; static associate(models: any): void; }