mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-29 12:55:04 +08:00
19 lines
645 B
TypeScript
19 lines
645 B
TypeScript
import { Type, Static } from '@sinclair/typebox';
|
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|
import { ActionName } from '@/onebot/action/router';
|
|
|
|
const SchemaData = Type.Object({
|
|
count: Type.Union([Type.Number(), Type.String()], { default: 48 }),
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export class FetchCustomFace extends OneBotAction<Payload, string[]> {
|
|
actionName = ActionName.FetchCustomFace;
|
|
payloadSchema = SchemaData;
|
|
|
|
async _handle(payload: Payload) {
|
|
const ret = await this.core.apis.MsgApi.fetchFavEmojiList(+payload.count);
|
|
return ret.emojiInfoList.map(e => e.url);
|
|
}
|
|
} |