mpa/langs/currency
This commit is contained in:
@ -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;
|
||||
}
|
Reference in New Issue
Block a user