mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 15:11:15 +00:00
Introduced explicit payloadSchema and returnSchema definitions for all OneBotAction classes using @sinclair/typebox. This improves type safety, API documentation, and validation for action payloads and return values. Also refactored method signatures and types for consistency across the codebase.
18 lines
599 B
TypeScript
18 lines
599 B
TypeScript
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { OneBotAction } from '../OneBotAction';
|
|
import { WebUiDataRuntime } from 'napcat-webui-backend/src/helper/Data';
|
|
import { Type } from '@sinclair/typebox';
|
|
|
|
export class SetRestart extends OneBotAction<void, void> {
|
|
override actionName = ActionName.Reboot;
|
|
override payloadSchema = Type.Object({});
|
|
override returnSchema = Type.Null();
|
|
|
|
async _handle () {
|
|
const result = await WebUiDataRuntime.requestRestartProcess();
|
|
if (!result.result) {
|
|
throw new Error(result.message || '进程重启失败');
|
|
}
|
|
}
|
|
}
|