mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +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) {
|
|
|
|
}
|
|
}
|