UNPKG

onebots

Version:

基于icqq的多例oneBot实现

10 lines (9 loc) 324 B
import { CommonAction } from "./common"; import { FriendAction } from "./friend"; import { GroupAction } from "./group"; export interface Action extends CommonAction, FriendAction, GroupAction { } declare const Action_base: import("../../../utils").Class<any>; export declare class Action extends Action_base { } export {};