-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy path.typedoc.ts
More file actions
48 lines (48 loc) · 911 Bytes
/
.typedoc.ts
File metadata and controls
48 lines (48 loc) · 911 Bytes
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
module.exports = {
"exclude": [
"./test/**",
"./src/interpreter/**",
"./src/i18n/**",
"./src/parser/**",
"./src/dependencyTransformers/**",
"./src/DependencyGraph/**",
"./src/ColumnSearch/**",
],
"mode": "file",
"out": "./typedoc",
"excludeExternals": true,
"excludeProtected": true,
"excludePrivate": true,
"hideGenerator": true,
"stripInternal": true,
"plugin": "none",
"name": "HyperFormula API",
"disableSources": false,
"categoryOrder": [
"License",
"Engine",
"Formula Syntax",
"Factories",
"Instance",
"Sheets",
"Ranges",
"Rows",
"Columns",
"Cells",
"Named Expressions",
"Helpers",
"Clipboard",
"Undo and Redo",
"Batch",
"Events",
"Custom Functions",
"*",
"Static Methods",
"Static Properties",
],
"toc": [
"HyperFormula",
"ConfigParams",
"Emitter"
]
}