@fabrix/spool-cart
Version:
Spool - eCommerce Spool for Fabrix
46 lines (45 loc) • 1.13 kB
TypeScript
import { FabrixModel as Model } from '@fabrix/fabrix/dist/common';
import { SequelizeResolver } from '@fabrix/spool-sequelize';
export declare class County 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): {
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;
}