mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 05:29:02 +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.
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { EventType, OneBotEvent } from '@/napcat-onebot/event/OneBotEvent';
|
|
|
|
export abstract class OB11BaseRequestEvent extends OneBotEvent {
|
|
readonly post_type = EventType.REQUEST;
|
|
abstract request_type: string;
|
|
}
|