NapCatQQ/src/onebot/action/extends/GetRobotUinRange.ts
手瓜一十雪 1bb6dce239
refactor: type-check (#586)
* refactor: type-check

* fix: default

* refactor: type-check
2024-12-01 12:41:51 +08:00

11 lines
327 B
TypeScript

import { OneBotAction } from '@/onebot/action/OneBotAction';
import { ActionName } from '@/onebot/action/router';
export class GetRobotUinRange extends OneBotAction<void, Array<any>> {
actionName = ActionName.GetRobotUinRange;
async _handle() {
return await this.core.apis.UserApi.getRobotUinRange();
}
}