UNPKG

koishi-plugin-adapter-iirose

Version:
21 lines (20 loc) 596 B
import { Context } from 'koishi'; import * as IIROSE from './bot/event'; import { Config } from './config'; export declare const name = "adapter-iirose"; export declare const inject: { required: string[]; optional: string[]; }; export declare const reusable = true; export declare const filter = false; export { Config }; export declare const usage: string; export * from './bot/bot'; export * from './utils/ws'; export * from './bot/event'; declare module 'koishi' { interface Events extends IIROSE.Events { } } export declare function apply(ctx: Context, config: Config): void;