NapCatQQ/packages/napcat-onebot/event/notice/OB11PokeEvent.ts
手瓜一十雪 4360775eff
refactor: 整体重构 (#1381)
* feat: pnpm new

* Refactor build and release workflows, update dependencies

Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
2025-11-13 15:39:42 +08:00

38 lines
1.0 KiB
TypeScript

import { OB11BaseNoticeEvent } from './OB11BaseNoticeEvent';
import { NapCatCore } from 'napcat-core';
class OB11PokeEvent extends OB11BaseNoticeEvent {
notice_type = 'notify';
sub_type = 'poke';
target_id = 0;
user_id = 0;
}
export class OB11FriendPokeEvent extends OB11PokeEvent {
raw_info: unknown;
sender_id: number;
// raw_message nb等框架标准为string
constructor (core: NapCatCore, user_id: number, sender_id: number, target_id: number, raw_message: unknown) {
super(core);
this.target_id = target_id;
this.user_id = user_id;
this.sender_id = sender_id;
this.raw_info = raw_message;
}
}
export class OB11GroupPokeEvent extends OB11PokeEvent {
group_id: number;
raw_info: unknown;
// raw_message nb等框架标准为string
constructor (core: NapCatCore, group_id: number, user_id: number, target_id: number, raw_message: unknown) {
super(core);
this.group_id = group_id;
this.target_id = target_id;
this.user_id = user_id;
this.raw_info = raw_message;
}
}