import ApiBase from "./ApiBase"; import { IMessageEntity } from "../IPuripara"; export interface IPostChannelMessageBody { message: string; nsfw?: boolean; } export default class Bot extends ApiBase { postChannelMessage(channelId: string, body: IPostChannelMessageBody): Promise; }