mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-13 00:10:27 +00:00
- 将 == 改为 === 进行严格相等检查 - 修复未使用的变量,改为 _varName 格式 - 移除箭头函数中缺少的返回值 - 将 void 改为 undefined - 移除无用的构造函数 - 修复 Promise 参数命名规范 - 移除不必要的转义符 - 添加 Service Worker 全局变量声明 - 修复未使用的类型参数
28 lines
1022 B
TypeScript
28 lines
1022 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
export const DownloadFilesetPayloadSchema = Type.Object({
|
|
fileset_id: Type.String({ description: '文件集 ID' }),
|
|
});
|
|
|
|
export type DownloadFilesetPayload = Static<typeof DownloadFilesetPayloadSchema>;
|
|
|
|
export class DownloadFileset extends OneBotAction<DownloadFilesetPayload, any> {
|
|
override actionName = ActionName.DownloadFileset;
|
|
override payloadSchema = DownloadFilesetPayloadSchema;
|
|
override returnSchema = Type.Any({ description: '下载结果' });
|
|
override actionSummary = '下载文件集';
|
|
override actionTags = ['文件扩展'];
|
|
override payloadExample = {
|
|
fileset_id: 'set_123',
|
|
};
|
|
|
|
override returnExample = null;
|
|
|
|
async _handle (payload: DownloadFilesetPayload) {
|
|
// 默认路径 / fileset_id /为下载路径
|
|
return await this.core.apis.FlashApi.downloadFileSetBySetId(payload.fileset_id);
|
|
}
|
|
}
|