UNPKG

koishi-plugin-beatsaber-bot

Version:

一个 用于 BeatSaber 的 koishi Bot 插件

11 lines (10 loc) 528 B
import { Context, Logger } from "koishi"; import { Config } from "../../config"; import { APIService, RenderService } from "../../service"; export { LeaveSubscribeCmd } from "./subleave"; export { UnSubscribeCmd } from './unsubscribe'; export { JoinSubscribeCmd } from './subjoin'; export declare function SubscribeCmd(ctx: Context, cfg: Config, render: RenderService, api: APIService, logger: Logger): { key: string; cmd: import("koishi").Command<"id", never, string[], import("koishi").Extend<{}, "type", string>>; };