mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-13 00:10:27 +00:00
- 将 == 改为 === 进行严格相等检查 - 修复未使用的变量,改为 _varName 格式 - 移除箭头函数中缺少的返回值 - 将 void 改为 undefined - 移除无用的构造函数 - 修复 Promise 参数命名规范 - 移除不必要的转义符 - 添加 Service Worker 全局变量声明 - 修复未使用的类型参数
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Type, Static } from '@sinclair/typebox';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
rawData: Type.String({ description: '原始数据' }),
|
|
brief: Type.String({ description: '简要描述' }),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Any({ description: '创建结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export class CreateCollection extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.CreateCollection;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionSummary = '创建收藏';
|
|
override actionTags = ['扩展接口'];
|
|
override payloadExample = {
|
|
rawData: '收藏内容',
|
|
brief: '收藏标题',
|
|
};
|
|
|
|
override returnExample = {
|
|
result: 0,
|
|
errMsg: '',
|
|
};
|
|
|
|
async _handle (payload: PayloadType) {
|
|
return await this.core.apis.CollectionApi.createCollection(
|
|
this.core.selfInfo.uin,
|
|
this.core.selfInfo.uid,
|
|
this.core.selfInfo.nick,
|
|
payload.brief, payload.rawData
|
|
);
|
|
}
|
|
}
|