-
Notifications
You must be signed in to change notification settings - Fork 117
/
.typedoc.ts
53 lines (53 loc) · 1016 Bytes
/
.typedoc.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
module.exports = {
"inputFiles": [
"./src/HyperFormula.ts",
"./src/ConfigParams.ts",
"./src/Emitter.ts",
],
"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"
]
}