mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-07 03:19:01 +08:00
* 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.
20 lines
598 B
TypeScript
20 lines
598 B
TypeScript
import { OB11BaseNoticeEvent } from './OB11BaseNoticeEvent';
|
|
import { NapCatCore } from 'napcat-core';
|
|
|
|
// TODO: 输入状态事件 初步完成 Mlikiowa 需要做一些过滤
|
|
export class OB11InputStatusEvent extends OB11BaseNoticeEvent {
|
|
notice_type = 'notify';
|
|
sub_type = 'input_status';
|
|
status_text = '对方正在输入...';
|
|
event_type = 1;
|
|
user_id = 0;
|
|
group_id = 0;
|
|
|
|
constructor (core: NapCatCore, user_id: number, eventType: number, status_text: string) {
|
|
super(core);
|
|
this.user_id = user_id;
|
|
this.event_type = eventType;
|
|
this.status_text = status_text;
|
|
}
|
|
}
|