style: lint

This commit is contained in:
手瓜一十雪 2024-05-02 18:16:03 +08:00
parent 39b8eb6ff1
commit fdef821c60
2 changed files with 15 additions and 15 deletions

View File

@ -12,13 +12,13 @@ interface PayloadType {
} }
export class GetGroupEssence extends BaseAction<PayloadType, GroupEssenceMsgRet> { export class GetGroupEssence extends BaseAction<PayloadType, GroupEssenceMsgRet> {
actionName = ActionName.GoCQHTTP_GetEssenceMsg; actionName = ActionName.GoCQHTTP_GetEssenceMsg;
protected async _handle(payload: PayloadType) { protected async _handle(payload: PayloadType) {
let ret = await WebApi.getGroupEssenceMsg(payload.group_id.toString(), payload.pages.toString()); const ret = await WebApi.getGroupEssenceMsg(payload.group_id.toString(), payload.pages.toString());
if (!ret) { if (!ret) {
throw new Error('获取失败'); throw new Error('获取失败');
}
return ret;
} }
return ret;
}
} }

View File

@ -7,14 +7,14 @@ interface PayloadType {
} }
export class GetGroupNotice extends BaseAction<PayloadType, WebApiGroupNoticeRet> { export class GetGroupNotice extends BaseAction<PayloadType, WebApiGroupNoticeRet> {
actionName = ActionName.GoCQHTTP_GetGroupNotice; actionName = ActionName.GoCQHTTP_GetGroupNotice;
protected async _handle(payload: PayloadType) { protected async _handle(payload: PayloadType) {
const group = payload.group_id.toString(); const group = payload.group_id.toString();
let ret = await WebApi.getGrouptNotice(group); const ret = await WebApi.getGrouptNotice(group);
if (!ret) { if (!ret) {
throw new Error('获取公告失败'); throw new Error('获取公告失败');
}
return ret;
} }
return ret;
}
} }