mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +00:00
13 lines
424 B
TypeScript
13 lines
424 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) {
|
|
// console.log(await NTQQUserApi.getRobotUinRange());
|
|
const NTQQUserApi = this.CoreContext.getApiContext().UserApi;
|
|
return await NTQQUserApi.getRobotUinRange();
|
|
}
|
|
}
|