koishi-plugin-adapter-iirose
Version:
[IIROSE-蔷薇花园](https://iirose.com/)适配器
21 lines (20 loc) • 596 B
TypeScript
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;