UNPKG

koishi-plugin-hellomorning

Version:

让你的bot每天定时打招呼/暖心话/新闻,或者更多!

10 lines (9 loc) 279 B
import { Context } from "koishi"; import { Config } from "./config"; declare module "koishi" { interface Events { "hellomorning/moring-event"(massage: string): void; } } export declare function apply(ctx: Context, config: Config): void; export * from "./config";