UNPKG

koishi-plugin-yuque

Version:

用于Koishi的语雀消息通知插件

18 lines (17 loc) 541 B
import { Context, Schema } from "koishi"; declare module 'koishi' { interface Channel { yuque: number; } } declare const using: readonly ["database"]; declare const name = "yuque"; declare const Config$0: Schema<{ port?: number; list?: string[]; } & import("schemastery").Dict<any, string>, { port?: number; list?: string[]; } & import("schemastery").Dict<any, string>>; declare function apply(ctx: Context, conf?: Config$0): Promise<void>; export { using, name, Config$0 as Config, apply };