mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
17 lines
405 B
TypeScript
17 lines
405 B
TypeScript
import { GroupEssenceMsgRet } from '@/ntqqapi/api'
|
|
import { BaseAction } from '../BaseAction'
|
|
import { ActionName } from '../types'
|
|
|
|
interface PayloadType {
|
|
group_id: number
|
|
pages?: number
|
|
}
|
|
|
|
export class GetGroupEssence extends BaseAction<PayloadType, GroupEssenceMsgRet | void> {
|
|
actionName = ActionName.GoCQHTTP_GetEssenceMsg
|
|
|
|
protected async _handle() {
|
|
throw '此 api 暂不支持'
|
|
}
|
|
}
|