-
-
Notifications
You must be signed in to change notification settings - Fork 147
/
artalk-config.d.ts
96 lines (71 loc) · 1.57 KB
/
artalk-config.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
export default interface ArtalkConfig {
/** 装载元素 */
el: string
/** 评论框占位字符 */
placeholder?: string
/** 评论为空时显示字符 */
noComment?: string
/** 发送按钮文字 */
sendBtn?: string
/** 页面唯一标识(完整 URL) */
pageKey: string
/** 页面标题 */
pageTitle?: string
/** 服务器地址 */
server: string
/** 站点名 */
site?: string
/** 表情包 */
emoticons?: object|any
/** Gravatar 头像 */
gravatar?: {
/** 镜像 */
mirror?: string
/** 默认头像(URL or Gravatar Type) */
default?: string
}
/** 分页配置 */
pagination?: {
/** 每次请求获取数量 */
pageSize?: number
/** 阅读更多模式 */
readMore?: boolean
/** 滚动到底部自动加载 */
autoLoad?: boolean
}
/** 内容限高 */
heightLimit: {
/** 评论内容限高 */
content?: number
/** 子评论区域限高 */
children?: number
}
/** 评论投票按钮 */
vote?: boolean
/** 评论投票反对按钮 */
voteDown?: boolean
/** 暗黑模式 */
darkMode?: boolean
/** 请求超时(单位:秒) */
reqTimeout?: number
/** 平铺模式 */
flatMode?: boolean|'auto'
/** 最大嵌套数 */
maxNesting?: number
/** 显示 UA 徽标 */
uaBadge?: boolean
/** 版本检测 */
versionCheck?: boolean
}
export interface LocalUser {
/** 昵称 */
nick: string
/** 邮箱 */
email: string
/** 链接 */
link: string
/** TOKEN */
token: string
/** 是否为管理员 */
isAdmin: boolean
}