UNPKG

koishi-plugin-steam-family-bot

Version:

一个用于新版 Steam 家庭的库存监控 koishi Bot 插件

24 lines (23 loc) 871 B
import { Context } from 'koishi'; import { SteamFamilyLibSubscribe, SteamAccount, SteamFamilyLib, SteamRelateChannelInfo, GameInfo, ChannelInfo, Config } from './interface'; import { SteamAccountFamilyRel } from 'steam-family-bot-core'; export * from './config'; export declare const name = "koishi-steam-family-lib-monitor"; export declare const inject: { required: string[]; optional: string[]; }; declare module 'koishi' { interface Tables { SteamAccount: SteamAccount; SteamFamilyLibSubscribe: SteamFamilyLibSubscribe; SteamFamilyLib: SteamFamilyLib; SteamRelateChannelInfo: SteamRelateChannelInfo<ChannelInfo>; SteamGameInfo: GameInfo; SteamAccountFamilyRel: SteamAccountFamilyRel; } interface Context { http: any; } } export declare function apply(ctx: Context, config: Config): void;