UNPKG

@wulperstudio/cms

Version:
11 lines (10 loc) 221 B
export interface CountryModel { code: string; label: string; prefix: string; mask: string; } export interface SelectCountryModel { onChange?: (value: CountryModel) => void; value?: CountryModel; }