mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-31 23:09:09 +08:00
21 lines
710 B
TypeScript
21 lines
710 B
TypeScript
import SendMsg, { normalize } from '../msg/SendMsg';
|
|
import { OB11PostSendMsg } from '../../types';
|
|
import { ActionName } from '../types';
|
|
// 未验证
|
|
export class GoCQHTTPSendForwardMsg extends SendMsg {
|
|
actionName = ActionName.GoCQHTTP_SendForwardMsg;
|
|
|
|
protected async check(payload: OB11PostSendMsg) {
|
|
if (payload.messages) payload.message = normalize(payload.messages);
|
|
return super.check(payload);
|
|
}
|
|
}
|
|
|
|
export class GoCQHTTPSendPrivateForwardMsg extends GoCQHTTPSendForwardMsg {
|
|
actionName = ActionName.GoCQHTTP_SendPrivateForwardMsg;
|
|
}
|
|
|
|
export class GoCQHTTPSendGroupForwardMsg extends GoCQHTTPSendForwardMsg {
|
|
actionName = ActionName.GoCQHTTP_SendGroupForwardMsg;
|
|
}
|