WechatMpEventData

This commit is contained in:
wangwenchen 2023-09-27 20:12:00 +08:00
parent 24fd061d20
commit 9dc5860c15
1 changed files with 11 additions and 2 deletions

View File

@ -11,9 +11,18 @@ export type WechatPublicEventData = {
FromUserName: string; FromUserName: string;
CreateTime: string; CreateTime: string;
MsgType: string; MsgType: string;
Event: string; Event: string;
Content: string; Content: string;
EventKey: string; EventKey: string;
MsgID: string; MsgID: string;
Status: string; Status: string;
}; };
export declare type WechatMpEventData = {
ToUserName: string;
FromUserName: string;
CreateTime: number;
MsgType: string;
Content: string;
MsgID: string;
};