From b605ff228043e997aaed99da1137003a9a70a5cc Mon Sep 17 00:00:00 2001 From: Mauko Date: Sat, 16 Nov 2024 03:05:12 +0300 Subject: [PATCH] Add KES to Currency Type (#192) --- development/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/types/index.ts b/development/types/index.ts index cdc22ab..6b459e0 100644 --- a/development/types/index.ts +++ b/development/types/index.ts @@ -1,6 +1,6 @@ import * as React from 'react'; import { ModalProps } from 'react-native'; -export type Currency = 'NGN' | 'GHS' | 'USD' | 'ZAR'; +export type Currency = 'NGN' | 'GHS' | 'USD' | 'ZAR' | 'KES'; export type PaymentChannels = 'bank' | 'card' | 'qr' | 'ussd' | 'mobile_money' | 'bank_transfer' | 'eft' | 'apple_pay';