nepali-number-system
Version:
Convert numbers to Nepali words representation, A TypeScript library to convert numbers into Nepali words, supporting both Nepali and English outputs
7 lines (6 loc) • 313 B
TypeScript
declare const convertNumberToWordsInNepaliSystem: (num: number | string, local?: 'np' | 'en') => string;
export { convertNumberToWordsInNepaliSystem };
declare const _default: {
convertNumberToWordsInNepaliSystem: (num: string | number, local?: "np" | "en" | undefined) => string;
};
export default _default;