mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
export class GetOnlineClient extends BaseAction<void, Array<any>> {
|
|
actionName = ActionName.GetOnlineClient;
|
|
|
|
protected async _handle(payload: void) {
|
|
|
|
}
|
|
}
|