UNPKG

react-intlayer

Version:

Easily internationalize i18n your React applications with type-safe multilingual content management.

34 lines (32 loc) 917 B
import * as _intlayer_types7 from "@intlayer/types"; //#region src/client/format/useCurrency.d.ts /** * React client hook that provides a currency formatter * bound to the current application locale. * * @returns {(value: string | number, options?: CurrencyProps) => string} * A function to format numbers into localized currency strings. * * @example * ```tsx * const formatCurrency = useCurrency(); * * formatCurrency(1500, { currency: "USD" }); * // "$1,500.00" * * formatCurrency(1500, { currency: "EUR", locale: "de-DE" }); * // "1.500,00 €" * * formatCurrency(9876543.21, { * currency: "JPY", * fractionDigits: 0, * }); * // "¥9,876,543" * ``` */ declare const useCurrency: () => (value: string | number, options?: Intl.NumberFormatOptions & { locale?: _intlayer_types7.LocalesValues; }) => string; //#endregion export { useCurrency }; //# sourceMappingURL=useCurrency.d.ts.map