UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

10 lines (9 loc) 246 B
export declare type CcyformatOptions = { round?: boolean; maximumFractionDigits?: number; }; /** * format currency */ declare const ccyformat: (currency: string | number, options?: CcyformatOptions) => string; export default ccyformat;