Type Alias: Currency
type Currency = "TZS" | "USD";Defined in: packages/pesa/src/types/core.ts:49
Supported currencies.
Extensible via module augmentation.
Currently only 'TZS' is fully supported. 'USD' is available
experimentally via ClickPesa card payments but multi-currency is
not yet a stable v1 feature.
Since
0.1.0 — 'TZS'
Example
// Future expansion:
// module augmentation in your app to add KES
declare module '@borapesa/pesa' {
export type Currency = 'TZS' | 'USD' | 'KES';
}