@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
11 lines (10 loc) • 518 B
TypeScript
/**
* Helpers for currency sign display lookup and fallback handling.
*/
import { CURRENCY, CURRENCY_DISPLAY, CURRENCY_FALLBACK_DISPLAY } from '../../../shared/defaults';
import type { CurrencyDisplayValue } from './types';
/**
* Will return currency display value based on navigator/browser and locale.
*/
export declare function getFallbackCurrencyDisplay(locale?: string | null, currencyDisplay?: string | boolean | null): CurrencyDisplayValue;
export { CURRENCY, CURRENCY_DISPLAY, CURRENCY_FALLBACK_DISPLAY };