UNPKG

@groww-tech/ella

Version:

Ella is a utility-belt library for JavaScript that provides general purpose methods used in day to day programming.

52 lines (50 loc) 1.45 kB
declare const DAY_CHANGE_PERC_ABS: { fallback: string; absoluteValue: boolean; }; declare const PRICE_CURRENCY_FALLBACK_ZERO: { isCurrency: boolean; fallback: string; }; declare const PRIMARY_FALLBACK: { fallback: number; }; declare const FALLBACK_ZERO_TO_FIXED_TWO: { fallback: string; }; declare const PLAIN_NUMBER: { plainNumber: boolean; }; declare const NO_COMMAS: { addCommas: boolean; }; declare const PRICE_CURRENCY_TO_FIXED_ZERO: { isCurrency: boolean; absoluteValue: boolean; toFixedValue: number; }; declare const PRICE_CURRENCY: { isCurrency: boolean; }; declare const FIXED_ZERO: { toFixedValue: number; }; declare const CONVERT_TO_LAKH_CRORE: { formatToLakhCrore: boolean; }; declare const PRICE_CURRENCY_USD: { isCurrency: boolean; currency: string; }; declare const CONVERT_TO_BILLION_TRILLION: { formatToBillionTrillion: boolean; }; declare const CURRENCY_CONVERT_TO_RUPEE: { isCurrency: boolean; formatPaisaToRupee: boolean; }; declare const SIGN_SPACE_BETWEEN_SIGN_VALUE: { withSign: boolean; spaceBetweenSignValue: boolean; }; export { CONVERT_TO_BILLION_TRILLION, CONVERT_TO_LAKH_CRORE, CURRENCY_CONVERT_TO_RUPEE, DAY_CHANGE_PERC_ABS, FALLBACK_ZERO_TO_FIXED_TWO, FIXED_ZERO, NO_COMMAS, PLAIN_NUMBER, PRICE_CURRENCY, PRICE_CURRENCY_FALLBACK_ZERO, PRICE_CURRENCY_TO_FIXED_ZERO, PRICE_CURRENCY_USD, PRIMARY_FALLBACK, SIGN_SPACE_BETWEEN_SIGN_VALUE };