@comparaonline/offers-models-factories
Version:
Models for comparaonline offers
14 lines (13 loc) • 522 B
TypeScript
import { EntityDataTypes } from '@comparaonline/offers-models-constants';
import { EntityList, Config } from '@comparaonline/offers-models';
import { EntityParams } from '../Entity';
export default interface EntityListParams extends EntityParams {
dataType: EntityDataTypes.list;
config: Config;
}
export declare class EntityListFactory {
options: EntityListParams;
constructor();
build(options?: EntityListParams): EntityList;
}
export declare const entityListFactory: EntityListFactory;