koishi-plugin-steaminfo-xiaoheihe
Version:
通过小黑盒网站搜索并生成截图获取 steam 游戏信息
17 lines (16 loc) • 508 B
TypeScript
import { Context, Schema } from 'koishi';
export declare const name = "steaminfo-xiaoheihe";
export declare const using: string[];
export interface Config {
cookies: string;
waitTimeout: number;
renderDelay: number;
deviceScaleFactor: number;
imageType: 'jpeg' | 'png';
imageQuality: number;
showGameTitle: boolean;
showOnlineCount: boolean;
debug: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;