forked from idlist/koishi-plugin-jrrp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
46 lines (42 loc) · 1.09 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { Context } from 'koishi'
export interface Config {
/**
* 是否使用数据库。数据库仅用来获取储存在其中的昵称。
*
* 当没有数据库时,此项将被强制设为 `false`。
*
* @default true
*/
useDatabase?: boolean
/**
* 自定义结果语句。详情请查看 https://github.com/idlist/koishi-plugin-qiuqian 。
*
* @default undefined
*/
result?: string
/**
* 是否对人品值进行附加评价。
*
* @default true
*/
useLevel?: boolean
/**
* 自定义评价语句。详情请查看 https://github.com/idlist/koishi-plugin-qiuqian 。
*
* @default {}
*/
levels?: Record<number | string, string>
/**
* 是否对特定分值进行特殊评价。
*
* @default true
*/
useJackpot?: boolean
/**
* 自定义对特定分值的评价语句。详情请查看 https://github.com/idlist/koishi-plugin-qiuqian 。
*
* @default {}
*/
jackpots?: Record<number | string, string>
}
export declare const apply: (ctx: Context, config: Config) => void