-
-
Notifications
You must be signed in to change notification settings - Fork 168
/
commands-cn.d.ts
65 lines (65 loc) · 1.43 KB
/
commands-cn.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
declare module '@uiw/react-md-editor/commands-cn' {
import { type ICommand } from '@uiw/react-md-editor/esm/commands';
import { divider } from '@uiw/react-md-editor/esm/commands/divider';
import { group } from '@uiw/react-md-editor/esm/commands/group';
let bold: ICommand;
let code: ICommand;
let codeBlock: ICommand;
let comment: ICommand;
let fullscreen: ICommand;
let hr: ICommand;
let image: ICommand;
let italic: ICommand;
let link: ICommand;
let checkedListCommand: ICommand;
let orderedListCommand: ICommand;
let unorderedListCommand: ICommand;
let codeEdit: ICommand;
let codeLive: ICommand;
let codePreview: ICommand;
let quote: ICommand;
let strikethrough: ICommand;
let issue: ICommand;
let title: ICommand;
let title1: ICommand;
let title2: ICommand;
let title3: ICommand;
let title4: ICommand;
let title5: ICommand;
let title6: ICommand;
let table: ICommand;
let help: ICommand;
export const getCommands: () => ICommand[];
export const getExtraCommands: () => ICommand[];
export {
title,
title1,
title2,
title3,
title4,
title5,
title6,
bold,
codeBlock,
comment,
italic,
strikethrough,
hr,
group,
divider,
link,
quote,
code,
image,
unorderedListCommand,
orderedListCommand,
checkedListCommand,
table,
issue,
help,
codeEdit,
codeLive,
codePreview,
fullscreen,
};
}