docs: add

This commit is contained in:
手瓜一十雪 2024-06-06 14:31:45 +08:00
parent f098b39200
commit cea9e11c83

View File

@ -2,6 +2,7 @@ import { DeviceList } from '@/onebot11/main';
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
import { JSONSchema } from 'json-schema-to-ts';
import { NTQQSystemApi } from '@/core';
const SchemaData = {
type: 'object',
@ -14,6 +15,7 @@ export class GetOnlineClient extends BaseAction<void, Array<any>> {
actionName = ActionName.GetOnlineClient;
protected async _handle(payload: void) {
//console.log(await NTQQSystemApi.getOnlineDev());
return DeviceList;
}
}