@comparaonline/offers-models-factories
Version:
Models for comparaonline offers
12 lines (11 loc) • 534 B
TypeScript
import { IntegerAttribute } from '@comparaonline/offers-models';
import { ProductAttributeParams } from '../ProductAttribute';
import { BaseProductAttributeFactory } from './BaseAttribute';
export interface IntegerAttributeParams extends ProductAttributeParams {
value?: number;
}
export declare class IntegerAttributeFactory extends BaseProductAttributeFactory {
constructor();
build(options?: IntegerAttributeParams): IntegerAttribute;
}
export declare const integerAttributeFactory: IntegerAttributeFactory;