mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-13 00:10:27 +00:00
- 将 == 改为 === 进行严格相等检查 - 修复未使用的变量,改为 _varName 格式 - 移除箭头函数中缺少的返回值 - 将 void 改为 undefined - 移除无用的构造函数 - 修复 Promise 参数命名规范 - 移除不必要的转义符 - 添加 Service Worker 全局变量声明 - 修复未使用的类型参数
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { Type, Static } from '@sinclair/typebox';
|
|
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
count: Type.Union([Type.Number(), Type.String()], { default: 48, description: '获取数量' }),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Array(Type.String(), { description: '表情URL列表' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export class FetchCustomFace extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.FetchCustomFace;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionSummary = '获取自定义表情';
|
|
override actionTags = ['系统扩展'];
|
|
override payloadExample = {
|
|
count: 10,
|
|
};
|
|
|
|
override returnExample = [
|
|
'http://example.com/face1.png',
|
|
];
|
|
|
|
async _handle (payload: PayloadType) {
|
|
const ret = await this.core.apis.MsgApi.fetchFavEmojiList(+payload.count);
|
|
return ret.emojiInfoList.map(e => e.url);
|
|
}
|
|
}
|