number-to-georgian-text
Version:
This package is for converting numbers to Georgian text.
12 lines (9 loc) • 393 B
text/typescript
type Input = string | number;
type Options = {
leadingOne?: boolean;
decimalPointSeparator?: string;
};
declare function numberToText(input: Input, options?: Options): string;
declare function numberToOrdinalText(input: number): string;
declare function numberToOrdinal(input: number): string;
export { type Input, type Options, numberToOrdinal, numberToOrdinalText, numberToText };