@unicef-polymer/etools-unicef
Version:
eTools UNICEF library of reusable components
10 lines (9 loc) • 375 B
TypeScript
/**
* Format value as currency amount. Delimited used ', '
*/
export declare const addCurrencyAmountDelimiter: (value?: any) => any;
/**
* Format value as currency amount and return it to be displayed
* Use this to display readonly currency amounts on interface
*/
export declare const displayCurrencyAmount: (value?: any, placeholder?: any, noOfDecimals?: any) => any;