Q2TG/src/helpers/setupHelper.ts

30 lines
634 B
TypeScript
Raw Normal View History

2023-06-30 11:26:45 +00:00
import { Platform } from 'icqq';
2022-02-18 06:22:29 +00:00
export default {
convertTextToPlatform(text: string): Platform {
switch (text) {
case '安卓手机':
return Platform.Android;
case '安卓平板':
return Platform.aPad;
case 'macOS':
return Platform.iMac;
case '安卓手表':
return Platform.Watch;
case 'iPad':
default:
return Platform.iPad;
}
},
2022-02-19 04:06:43 +00:00
convertTextToWorkMode(text: string) {
switch (text) {
case '个人模式':
return 'personal';
case '群组模式':
return 'group';
default:
return '';
}
},
2022-02-18 06:22:29 +00:00
};