UNPKG

koishi-plugin-wifegacha

Version:

抽老婆,详情请查看[readme.md](https://github.com/Bear-biscuit/koishi-plugin-wifegacha/blob/main/README.md)

25 lines (24 loc) 570 B
import { Context } from "koishi"; import { Config } from "../index"; export interface WifeData { id: number; name: string; comeFrom: string; filepath: string; createdAt: Date; updatedAt: Date; groupData: Array<{ groupId: string; drawCount: number; ntrCount: number; fuckCount: number; divorceCount: number; ntrFailCount: number; }>; } declare module "koishi" { interface Tables { wifeData: WifeData; } } export declare function wifeData(ctx: Context, config: Config): void;