UNPKG

koishi-plugin-kbot

Version:
9 lines (8 loc) 270 B
import type { Context } from 'koishi'; import { Schema } from 'koishi'; export interface IConfig { youtubeDataApiKey: string; useImage?: boolean; } export declare const Config: Schema<IConfig>; export declare function apply(ctx: Context, config: IConfig): void;