mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 12:37:55 +00:00
20 lines
259 B
TypeScript
20 lines
259 B
TypeScript
export const EnumTransModelType = {
|
|
edit: '编辑',
|
|
add: '新增',
|
|
};
|
|
|
|
export const EnumDescSensitivity = {
|
|
low: {
|
|
value: 1,
|
|
label: '低',
|
|
},
|
|
middle: {
|
|
value: 2,
|
|
label: '中',
|
|
},
|
|
height: {
|
|
value: 3,
|
|
label: '高',
|
|
},
|
|
};
|