LLOneBot/src/onebot11/actions/SendGroupMsg.ts
2024-02-19 13:31:57 +08:00

9 lines
178 B
TypeScript

import SendMsg from "./SendMsg";
import {ActionName} from "./types";
class SendGroupMsg extends SendMsg{
actionName = ActionName.SendGroupMsg
}
export default SendGroupMsg