@etsoo/smarterp-core
Version:
TypeScript APIs for SmartERP Core
22 lines (21 loc) • 633 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PinyinFormatType = void 0;
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 || (exports.PinyinFormatType = PinyinFormatType = {}));