Type Alias: Currency

type Currency = "TZS";

Defined in: packages/pesa/src/types/core.ts:44

Supported currencies.

Currently TZS-only. Multi-currency support will be added post-v1.0 based on community demand. Extensible via module augmentation.

Example

// Future expansion (post-v1):
// module augmentation in your app to add KES
declare module '@borapesa/pesa' {
  export type Currency = 'TZS' | 'KES';
}

On this page