UNPKG

@comparaonline/offers-models-factories

Version:
11 lines (10 loc) 296 B
import { Country } from '@comparaonline/offers-models'; export interface CountryParams { name?: string; code?: string; } export declare class CountryFactory { constructor(); build(options?: CountryParams): Country; } export declare const countryFactory: CountryFactory;