nupp
Version:
一款由 typescript 编写的 数字转(汉字/大写)的 js 工具库
32 lines (31 loc) • 599 B
TypeScript
/**
* 大写
*/
declare const numberCapitalMapInfo: {
[key: number]: string;
};
/**
* 汉字
*/
declare const numberCharacterMapInfo: {
[key: number]: string;
};
/**
* 汉字单位
*/
declare const unitCharacterMapInfo: {
[key: number]: string | Array<string>;
};
/**
* 大写单位
*/
declare const unitCapitalMapInfo: {
[key: number]: string | Array<string>;
};
/**
* 角分
*/
declare const angularFractionMapInfo: {
[key: number]: string;
};
export { numberCapitalMapInfo, numberCharacterMapInfo, unitCharacterMapInfo, unitCapitalMapInfo, angularFractionMapInfo };