-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.d.ts
91 lines (78 loc) · 1.73 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
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
import { BasePluginOptions } from '../../editor'
import { IUser, IFile } from '../../../global'
import { EventEmitter } from 'eventemitter3'
declare enum Events {
ERROR = 'ERROR',
CLOSE_GROUP = 'CLOSE_GROUP',
CREATED = 'CREATED',
CLOSE = 'CLOSE'
}
export interface CommentOptions extends BasePluginOptions{
/**
* 更新评论的间隔,单位毫秒,默认 10000
*/
updateDuration?: number
/**
* 设置评论空间的 CSS 层级
*/
zIndex?: number
/**
* 用户实例,由内部模块处理,外部不需要配置
*/
user: IUser
/**
* 内部 API 地址,一般由内部模块处理,外部不需要配置
*/
service?: {
fetch?: string;
create?: string;
delete?: string;
close?: string;
}
/**
* 是否开启 @ 功能,默认 true
*/
mentionable?: boolean
/**
* @ 功能配置参数
*/
mention?: {
/**
* API 地址,一般由内部模块处理,外部不需要配置
*/
service: {
/**
* 最近联系人 API
*/
recentContacts: string;
/**
* 最近使用文件,暂无实际效果
*/
recentFiles: string;
/**
* 搜索 API,暂无实际效果
*/
searchApi: string;
},
/**
* 文件实例,由内部模块处理,外部不需要配置
*/
file: IFile
}
/**
* 是否展示评论浮动框,移动端需关闭
*/
hasPanel?: boolean
/**
* 是否显示添加评论按钮,移动端需关闭
*/
hasGenerator?: boolean
}
export default class Comment extends EventEmitter<Events> {
constructor (options: CommentOptions);
render (container?: HTMLElement): void
update (): void
show (): void
hide (): void
destroy (): void
}