mpa/langs/currency

This commit is contained in:
2025-06-04 15:59:23 +02:00
parent c9348dc092
commit a7c4ff51ca
11 changed files with 414 additions and 115 deletions

View File

@ -94,4 +94,36 @@ export type componentsListType = {
component: PBPageItem;
componentInstance: DefineComponent;
data: SectionLangData;
};
};
// menuStore
export type CountryList = {
call_prefix: string;
currency_iso_code: string;
iso_code: string;
name: string;
}
export type Countries = {
call_prefix: string;
currency_iso_code: string;
iso_code: string;
name: string;
}
export type PartnersList = {
country_iso: string;
country_name: string;
total: number;
}
export type Currencies = {
iso_code: string;
name: string;
UpdatedAt: string;
iso_code_num: number;
precision: number;
sign: string;
active: boolean;
suffix: boolean;
}