@etsoo/smarterp-core
Version:
TypeScript APIs for SmartERP Core
19 lines (18 loc) • 501 B
JavaScript
export var PinyinFormatType;
(function (PinyinFormatType) {
/**
* Full Pinyin without tone
* 不带声调的全拼
*/
PinyinFormatType[PinyinFormatType["Full"] = 0] = "Full";
/**
* Initial letter
* 首字母
*/
PinyinFormatType[PinyinFormatType["Initial"] = 1] = "Initial";
/**
* Full Pinyin with tone
* 带声调的全拼
*/
PinyinFormatType[PinyinFormatType["Tone"] = 2] = "Tone";
})(PinyinFormatType || (PinyinFormatType = {}));