n2words
Version:
Convert numbers to words in 70+ languages with zero dependencies. Supports BigInt, decimals, and browser/Node.js environments.
47 lines (46 loc) • 1.88 kB
TypeScript
/**
* Telugu (India) language converter
*
* CLDR: te-IN | Telugu as used in India
*
* Key features:
* - Indian numbering system (వెయ్యి, లక్ష, కోటి)
* - Telugu script
* - 3-2-2 grouping pattern
* - Complete word forms for 0-99
* - Per-digit decimal reading
*/
export declare const cardinalMax: bigint;
export declare const ordinalMax: bigint;
export declare const currencyMax: bigint;
/**
* Converts a numeric value to Telugu words.
* @param {number | string | bigint} value - The numeric value to convert
* @returns {string} The number in Telugu words
*/
declare function toCardinal(value: number | string | bigint): string;
/**
* Converts a numeric value to Telugu ordinal words.
* @param {number | string | bigint} value - The numeric value to convert (positive integer)
* @returns {string} The number as ordinal words
* @throws {TypeError} If value is not a valid numeric type
* @throws {RangeError} If value is negative, zero, or has a decimal part
* @example
* toOrdinal(1) // 'మొదటి'
* toOrdinal(2) // 'రెండవ'
* toOrdinal(10) // 'పదివ'
*/
declare function toOrdinal(value: number | string | bigint): string;
/**
* Converts a numeric value to Telugu currency words (Indian Rupee).
* @param {number | string | bigint} value - The currency amount to convert
* @returns {string} The amount in Telugu currency words
* @throws {TypeError} If value is not a valid numeric type
* @throws {Error} If value is not a valid number format
* @example
* toCurrency(42.50) // 'నలభై రెండు రూపాయలు యాభై పైసలు'
* toCurrency(1) // 'ఒకటి రూపాయి'
* toCurrency(0.01) // 'ఒకటి పైసా'
*/
declare function toCurrency(value: number | string | bigint): string;
export { toCardinal, toOrdinal, toCurrency };