-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.d.ts
65 lines (57 loc) · 1.43 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
import Editor from '../../editor'
import { BasePluginOptions } from '../../editor'
export declare const pluginName = 'HistorySidebarSkeleton'
export declare enum HistoryTabType {
History = 'history',
Discord = 'discord',
Version = 'version'
}
export interface HistorySidebarSkeletonOptions extends BasePluginOptions {
/**
* 历史列表渲染的容器元素
*/
container?: HTMLElement
/**
* 文件 GUID,由内部模块处理,外部不需要配置
*/
guid?: string
/**
* 当前用户 ID,由内部模块处理,外部不需要配置
*/
currentUserId?: string
/**
* 历史相关的 API 地址,一般由内部模块处理,外部不需要配置
*/
history?: {
loadHistoryUrl: string
revertUrl: string
snapshotUrl: string
loadStepsUrl: string
/**
* 联系人列表 API
*/
contactUrl: string
}
/**
* 版本相关的 API 地址,一般由内部模块处理,外部不需要配置
*/
version?: {
loadHistoryUrl: string
loadVersionListUrl: string
revertVersionUrl: string
deleteVersionUrl: string
updateVersionUrl: string
snapshotUrl: string
loadStepsUrl: string
/**
* 是否能编辑版本条目
*/
canManageVersionItem: boolean
}
}
export default class HistorySidebarSkeleton {
constructor (options: HistorySidebarSkeletonOptions);
render (container: HTMLElement): void
show (): void
hide (): void
}