UNPKG

@donation-alerts/common

Version:

Common utils and types that are used in other @donation-alerts packages.

9 lines 414 B
/** * Represents the input currencies that the client can use in API requests. */ export type DonationAlertsInputCurrency = 'EUR' | 'USD' | 'RUB' | 'BRL' | 'TRY'; /** * Represents the output currencies that may appear in Donation Alerts API or event responses. */ export type DonationAlertsOutputCurrency = 'EUR' | 'USD' | 'RUB' | 'BYN' | 'KZT' | 'UAH' | 'BRL' | 'TRY'; //# sourceMappingURL=currencies.d.ts.map