UNPKG

koishi-plugin-ff14calendar

Version:

一个适用于 [Koishi](https://koishi.chat/) 的 FFXIV 日历推送插件,也支持其他 Webcal/ics 日历订阅,自动推送和手动查询活动,兼容 QQ(OneBot)、Discord 等多平台。

11 lines (10 loc) 300 B
import { Context, Schema } from 'koishi'; export interface Config { webcalUrl: string; targetId: string[]; cronTime: string; messageTemplate: string; proxy?: string; } export declare const Config: Schema<Config>; export declare function apply(ctx: Context, config: Config): void;