mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-06 21:10:23 +00:00
Replaced generic ActionExamples imports with more specific examples modules (FileActionsExamples, GroupActionsExamples, GoCQHTTPActionsExamples) across file, group, and go-cqhttp actions. Added or updated actionSummary, actionDescription, actionTags, payloadExample, and returnExample properties for improved API documentation and clarity.
21 lines
815 B
TypeScript
21 lines
815 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Type } from '@sinclair/typebox';
|
|
import { GoCQHTTPActionsExamples } from './examples';
|
|
|
|
// 兼容性代码
|
|
export class GoCQHTTPSetModelShow extends OneBotAction<void, void> {
|
|
override actionName = ActionName.GoCQHTTP_SetModelShow;
|
|
override payloadSchema = Type.Object({});
|
|
override returnSchema = Type.Null();
|
|
override actionSummary = '设置模型显示';
|
|
override actionDescription = '设置当前账号的设备模型显示名称';
|
|
override actionTags = ['Go-CQHTTP'];
|
|
override payloadExample = GoCQHTTPActionsExamples.GoCQHTTPSetModelShow.payload;
|
|
override returnExample = GoCQHTTPActionsExamples.GoCQHTTPSetModelShow.response;
|
|
|
|
async _handle () {
|
|
|
|
}
|
|
}
|