mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-21 22:50:06 +08:00
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
|
|
export class GetRobotUinRange extends BaseAction<void, Array<any>> {
|
|
actionName = ActionName.GetRobotUinRange;
|
|
|
|
async _handle(payload: void) {
|
|
const NTQQUserApi = this.CoreContext.apis.UserApi;
|
|
return await NTQQUserApi.getRobotUinRange();
|
|
}
|
|
}
|