UNPKG

@comparaonline/offers-models-factories

Version:
12 lines (11 loc) 534 B
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;