UNPKG

koishi-plugin-dailynews

Version:

定时发送每日新闻的 Koishi 插件,使用 60s API 获取新闻内容

10 lines (9 loc) 256 B
import { Context } from "koishi"; import { Config } from "./config"; declare module "koishi" { interface Events { "dailynews/trigger"(): void; } } export declare function apply(ctx: Context, config: Config): void; export * from "./config";