koishi-plugin-fate
Version:
A koishi plugin for fortune telling and sign in.
13 lines (12 loc) • 344 B
TypeScript
import { Schema } from 'koishi';
import { FortuneInfo, LevelInfo, RollEvent } from '../data/types';
export interface Config {
imgUrl: string;
signExp: number[];
signCoin: number[];
currency: string;
levelSet: LevelInfo[];
fortuneSet: FortuneInfo[];
event: RollEvent[];
}
export declare const Config: Schema<Config>;