From 308d96118db667a5cd4d9a312bccf9061a49063c Mon Sep 17 00:00:00 2001 From: "Rizki Citra (rimzzlabs)" <62492410+rimzzlabs@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:00:30 +0700 Subject: [PATCH] feat: export `IntlConfig` props (#374) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 558216d..bf3b501 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ import CurrencyInput from './components/CurrencyInput'; -export { CurrencyInputProps, CurrencyInputOnChangeValues } from './components/CurrencyInputProps'; +export { CurrencyInputProps, CurrencyInputOnChangeValues, IntlConfig } from './components/CurrencyInputProps'; export default CurrencyInput; export { formatValue } from './components/utils/formatValue'; export { cleanValue } from './components/utils/cleanValue';