/**
* 计时模式类型的可选值可以是如下几种
*
* @since 1.1.0
*
* @global
* @readonly
*
* @constant {object} MODE_TYPE
*
* @property {string} +='+' - 正序计时模式可选值
* @property {string} inc='+' - 正序计时模式可选值
* @property {string} increse='+' - 正序计时模式可选值
* @property {string} plus='+' - 正序计时模式可选值
* @property {string} asc='+' - 正序计时模式可选值
* @property {string} \-='-' - 倒序计时模式可选值
* @property {string} dec='-' - 倒序计时模式可选值
* @property {string} decrese='-' - 倒序计时模式可选值
* @property {string} reduce='-' - 倒序计时模式可选值
* @property {string} desc='-' - 倒序计时模式可选值
*/
export default {
'+': '+',
'inc': '+',
'increse': '+',
'plus': '+',
'asc': '+',
'-': '-',
'dec': '-',
'decrese': '-',
'reduce': '-',
'desc': '-',
}