UNPKG

num2txt

Version:

Converts number to Vietnamese or English text with customized output.

7 lines (6 loc) 404 B
import { TextTransformProps } from "../types"; export declare const toUpperCase: (str: string) => string; export declare const toLowerCase: (str: string) => string; export declare const toCapitalizeFirstLetter: (str: string) => string; export declare const toCapitalizeWords: (str: string) => string; export declare const transformText: (str: string, textTransform?: TextTransformProps) => string;