13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
export var InputTypes;
|
|
(function (InputTypes) {
|
|
InputTypes["stroke"] = "stroke";
|
|
InputTypes["pinyin"] = "pinyin";
|
|
InputTypes["handwriting"] = "handwriting";
|
|
})(InputTypes || (InputTypes = {}));
|
|
export var RareWordsKeyboardProps = {
|
|
visible: false,
|
|
type: 'pinyin',
|
|
showMask: true,
|
|
safeArea: true,
|
|
};
|