@nikovirtala/projen-typedoc 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/API.md ADDED
@@ -0,0 +1,1188 @@
1
+ # API Reference <a name="API Reference" id="api-reference"></a>
2
+
3
+ ## Constructs <a name="Constructs" id="Constructs"></a>
4
+
5
+ ### TypeDoc <a name="TypeDoc" id="@nikovirtala/projen-typedoc.TypeDoc"></a>
6
+
7
+ TypeDoc component for projen projects.
8
+
9
+ #### Initializers <a name="Initializers" id="@nikovirtala/projen-typedoc.TypeDoc.Initializer"></a>
10
+
11
+ ```typescript
12
+ import { TypeDoc } from '@nikovirtala/projen-typedoc'
13
+
14
+ new TypeDoc(project: NodeProject, options?: TypeDocOptions)
15
+ ```
16
+
17
+ | **Name** | **Type** | **Description** |
18
+ | --- | --- | --- |
19
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.Initializer.parameter.project">project</a></code> | <code>projen.javascript.NodeProject</code> | *No description.* |
20
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.Initializer.parameter.options">options</a></code> | <code><a href="#@nikovirtala/projen-typedoc.TypeDocOptions">TypeDocOptions</a></code> | *No description.* |
21
+
22
+ ---
23
+
24
+ ##### `project`<sup>Required</sup> <a name="project" id="@nikovirtala/projen-typedoc.TypeDoc.Initializer.parameter.project"></a>
25
+
26
+ - *Type:* projen.javascript.NodeProject
27
+
28
+ ---
29
+
30
+ ##### `options`<sup>Optional</sup> <a name="options" id="@nikovirtala/projen-typedoc.TypeDoc.Initializer.parameter.options"></a>
31
+
32
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.TypeDocOptions">TypeDocOptions</a>
33
+
34
+ ---
35
+
36
+ #### Methods <a name="Methods" id="Methods"></a>
37
+
38
+ | **Name** | **Description** |
39
+ | --- | --- |
40
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.toString">toString</a></code> | Returns a string representation of this construct. |
41
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.postSynthesize">postSynthesize</a></code> | Called after synthesis. |
42
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.preSynthesize">preSynthesize</a></code> | Called before synthesis. |
43
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.synthesize">synthesize</a></code> | Synthesizes files to the project output directory. |
44
+
45
+ ---
46
+
47
+ ##### `toString` <a name="toString" id="@nikovirtala/projen-typedoc.TypeDoc.toString"></a>
48
+
49
+ ```typescript
50
+ public toString(): string
51
+ ```
52
+
53
+ Returns a string representation of this construct.
54
+
55
+ ##### `postSynthesize` <a name="postSynthesize" id="@nikovirtala/projen-typedoc.TypeDoc.postSynthesize"></a>
56
+
57
+ ```typescript
58
+ public postSynthesize(): void
59
+ ```
60
+
61
+ Called after synthesis.
62
+
63
+ Order is *not* guaranteed.
64
+
65
+ ##### `preSynthesize` <a name="preSynthesize" id="@nikovirtala/projen-typedoc.TypeDoc.preSynthesize"></a>
66
+
67
+ ```typescript
68
+ public preSynthesize(): void
69
+ ```
70
+
71
+ Called before synthesis.
72
+
73
+ ##### `synthesize` <a name="synthesize" id="@nikovirtala/projen-typedoc.TypeDoc.synthesize"></a>
74
+
75
+ ```typescript
76
+ public synthesize(): void
77
+ ```
78
+
79
+ Synthesizes files to the project output directory.
80
+
81
+ #### Static Functions <a name="Static Functions" id="Static Functions"></a>
82
+
83
+ | **Name** | **Description** |
84
+ | --- | --- |
85
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
86
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.isComponent">isComponent</a></code> | Test whether the given construct is a component. |
87
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.of">of</a></code> | *No description.* |
88
+
89
+ ---
90
+
91
+ ##### `isConstruct` <a name="isConstruct" id="@nikovirtala/projen-typedoc.TypeDoc.isConstruct"></a>
92
+
93
+ ```typescript
94
+ import { TypeDoc } from '@nikovirtala/projen-typedoc'
95
+
96
+ TypeDoc.isConstruct(x: any)
97
+ ```
98
+
99
+ Checks if `x` is a construct.
100
+
101
+ Use this method instead of `instanceof` to properly detect `Construct`
102
+ instances, even when the construct library is symlinked.
103
+
104
+ Explanation: in JavaScript, multiple copies of the `constructs` library on
105
+ disk are seen as independent, completely different libraries. As a
106
+ consequence, the class `Construct` in each copy of the `constructs` library
107
+ is seen as a different class, and an instance of one class will not test as
108
+ `instanceof` the other class. `npm install` will not create installations
109
+ like this, but users may manually symlink construct libraries together or
110
+ use a monorepo tool: in those cases, multiple copies of the `constructs`
111
+ library can be accidentally installed, and `instanceof` will behave
112
+ unpredictably. It is safest to avoid using `instanceof`, and using
113
+ this type-testing method instead.
114
+
115
+ ###### `x`<sup>Required</sup> <a name="x" id="@nikovirtala/projen-typedoc.TypeDoc.isConstruct.parameter.x"></a>
116
+
117
+ - *Type:* any
118
+
119
+ Any object.
120
+
121
+ ---
122
+
123
+ ##### `isComponent` <a name="isComponent" id="@nikovirtala/projen-typedoc.TypeDoc.isComponent"></a>
124
+
125
+ ```typescript
126
+ import { TypeDoc } from '@nikovirtala/projen-typedoc'
127
+
128
+ TypeDoc.isComponent(x: any)
129
+ ```
130
+
131
+ Test whether the given construct is a component.
132
+
133
+ ###### `x`<sup>Required</sup> <a name="x" id="@nikovirtala/projen-typedoc.TypeDoc.isComponent.parameter.x"></a>
134
+
135
+ - *Type:* any
136
+
137
+ ---
138
+
139
+ ##### `of` <a name="of" id="@nikovirtala/projen-typedoc.TypeDoc.of"></a>
140
+
141
+ ```typescript
142
+ import { TypeDoc } from '@nikovirtala/projen-typedoc'
143
+
144
+ TypeDoc.of(project: Project)
145
+ ```
146
+
147
+ ###### `project`<sup>Required</sup> <a name="project" id="@nikovirtala/projen-typedoc.TypeDoc.of.parameter.project"></a>
148
+
149
+ - *Type:* projen.Project
150
+
151
+ ---
152
+
153
+ #### Properties <a name="Properties" id="Properties"></a>
154
+
155
+ | **Name** | **Type** | **Description** |
156
+ | --- | --- | --- |
157
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
158
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.property.project">project</a></code> | <code>projen.Project</code> | *No description.* |
159
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.property.file">file</a></code> | <code>projen.JsonFile</code> | TypeDoc configuration file. |
160
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDoc.property.task">task</a></code> | <code>projen.Task</code> | TypeDoc task. |
161
+
162
+ ---
163
+
164
+ ##### `node`<sup>Required</sup> <a name="node" id="@nikovirtala/projen-typedoc.TypeDoc.property.node"></a>
165
+
166
+ ```typescript
167
+ public readonly node: Node;
168
+ ```
169
+
170
+ - *Type:* constructs.Node
171
+
172
+ The tree node.
173
+
174
+ ---
175
+
176
+ ##### `project`<sup>Required</sup> <a name="project" id="@nikovirtala/projen-typedoc.TypeDoc.property.project"></a>
177
+
178
+ ```typescript
179
+ public readonly project: Project;
180
+ ```
181
+
182
+ - *Type:* projen.Project
183
+
184
+ ---
185
+
186
+ ##### `file`<sup>Required</sup> <a name="file" id="@nikovirtala/projen-typedoc.TypeDoc.property.file"></a>
187
+
188
+ ```typescript
189
+ public readonly file: JsonFile;
190
+ ```
191
+
192
+ - *Type:* projen.JsonFile
193
+
194
+ TypeDoc configuration file.
195
+
196
+ ---
197
+
198
+ ##### `task`<sup>Required</sup> <a name="task" id="@nikovirtala/projen-typedoc.TypeDoc.property.task"></a>
199
+
200
+ ```typescript
201
+ public readonly task: Task;
202
+ ```
203
+
204
+ - *Type:* projen.Task
205
+
206
+ TypeDoc task.
207
+
208
+ ---
209
+
210
+
211
+ ## Structs <a name="Structs" id="Structs"></a>
212
+
213
+ ### TypeDocConfiguration <a name="TypeDocConfiguration" id="@nikovirtala/projen-typedoc.TypeDocConfiguration"></a>
214
+
215
+ TypeDoc configuration.
216
+
217
+ > [https://typedoc.org/options/](https://typedoc.org/options/)
218
+
219
+ #### Initializer <a name="Initializer" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.Initializer"></a>
220
+
221
+ ```typescript
222
+ import { TypeDocConfiguration } from '@nikovirtala/projen-typedoc'
223
+
224
+ const typeDocConfiguration: TypeDocConfiguration = { ... }
225
+ ```
226
+
227
+ #### Properties <a name="Properties" id="Properties"></a>
228
+
229
+ | **Name** | **Type** | **Description** |
230
+ | --- | --- | --- |
231
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.basePath">basePath</a></code> | <code>string</code> | Specify the base path for all urls. |
232
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cacheBust">cacheBust</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
233
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.categorizeByGroup">categorizeByGroup</a></code> | <code>boolean</code> | Specify the categories that will be used to group reflections. |
234
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cleanOutputDir">cleanOutputDir</a></code> | <code>boolean</code> | Prevent TypeDoc from cleaning the output directory specified with --out. |
235
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.commentStyle">commentStyle</a></code> | <code><a href="#@nikovirtala/projen-typedoc.CommentStyle">CommentStyle</a></code> | Specify the documentation mode TypeDoc should use. |
236
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultCategory">defaultCategory</a></code> | <code>string</code> | Specify the default category for reflections without a category. |
237
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultGroup">defaultGroup</a></code> | <code>string</code> | Specify the default group for reflections without a group. |
238
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultVisibility">defaultVisibility</a></code> | <code><a href="#@nikovirtala/projen-typedoc.Visibility">Visibility</a></code> | Specify the default visibility for members without a visibility tag. |
239
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableGit">disableGit</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
240
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableSources">disableSources</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
241
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.entryPoints">entryPoints</a></code> | <code>string[]</code> | Specifies the entry points to be documented by TypeDoc. |
242
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.entryPointStrategy">entryPointStrategy</a></code> | <code><a href="#@nikovirtala/projen-typedoc.EntryPointStrategy">EntryPointStrategy</a></code> | Specifies the strategy to be used to convert entry points into documentation. |
243
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.exclude">exclude</a></code> | <code>string[]</code> | Define patterns to be excluded when expanding directories. |
244
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeExternals">excludeExternals</a></code> | <code>boolean</code> | Prevent externally resolved symbols from being documented. |
245
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeInternal">excludeInternal</a></code> | <code>boolean</code> | Prevent symbols that are not exported from being documented. |
246
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludePrivate">excludePrivate</a></code> | <code>boolean</code> | Prevent private members from being included in the generated documentation. |
247
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeProtected">excludeProtected</a></code> | <code>boolean</code> | Prevent protected members from being included in the generated documentation. |
248
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalPattern">externalPattern</a></code> | <code>string[]</code> | Specify the base URL for links to source files. |
249
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalSymbolLinkMappings">externalSymbolLinkMappings</a></code> | <code>{[ key: string ]: {[ key: string ]: string}}</code> | Specify the base URL for links to source files. |
250
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.gitRemote">gitRemote</a></code> | <code>string</code> | Specify the git remote that should be used to link to source files. |
251
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.gitRevision">gitRevision</a></code> | <code>string</code> | Specify the git revision that should be used to link to source files. |
252
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideGenerator">hideGenerator</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
253
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideParameterTypesInTitle">hideParameterTypesInTitle</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
254
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.includes">includes</a></code> | <code>string</code> | Specify the location to look for included documents. |
255
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.intentionallyNotExported">intentionallyNotExported</a></code> | <code>string[]</code> | Specify the base URL for links to source files. |
256
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.json">json</a></code> | <code>string</code> | Specify the location the documentation should be written to. |
257
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.logLevel">logLevel</a></code> | <code><a href="#@nikovirtala/projen-typedoc.LogLevel">LogLevel</a></code> | Specify the logger that should be used. |
258
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.media">media</a></code> | <code>string</code> | Specify the location with media files that should be copied to the output directory. |
259
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.name">name</a></code> | <code>string</code> | Set the name of the project that will be used in the header of the template. |
260
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.out">out</a></code> | <code>string</code> | Specifies the output directory the documentation should be written to. |
261
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.packageJson">packageJson</a></code> | <code>string</code> | Specify the package.json file that should be used to determine the package name. |
262
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.readme">readme</a></code> | <code>string</code> | Specify the readme file that should be displayed on the index page. |
263
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.requiredToBeDocumented">requiredToBeDocumented</a></code> | <code>string[]</code> | Specify the base URL for links to source files. |
264
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchCategoryBoosts">searchCategoryBoosts</a></code> | <code>{[ key: string ]: number}</code> | Specify the search category boosts. |
265
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchGroupBoosts">searchGroupBoosts</a></code> | <code>{[ key: string ]: number}</code> | Specify the search group boosts. |
266
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInComments">searchInComments</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
267
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInDocuments">searchInDocuments</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
268
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sort">sort</a></code> | <code>string[]</code> | Specify the sort strategy for documented values. |
269
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sortEntryPoints">sortEntryPoints</a></code> | <code>boolean</code> | Specify the sort strategy for static and instance members. |
270
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sourceUrlTemplate">sourceUrlTemplate</a></code> | <code>string</code> | Specify the base URL for links to source files. |
271
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.theme">theme</a></code> | <code>string</code> | Specify a theme name to use. |
272
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatValidationWarningsAsErrors">treatValidationWarningsAsErrors</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
273
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatWarningsAsErrors">treatWarningsAsErrors</a></code> | <code>boolean</code> | Specify the base URL for links to source files. |
274
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.tsBuildInfo">tsBuildInfo</a></code> | <code>string</code> | Specify the location and filename a .tsbuildinfo file should be written to. |
275
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.tsconfig">tsconfig</a></code> | <code>string</code> | Specify a TypeScript config file that should be used to load TypeScript configuration. |
276
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.validation">validation</a></code> | <code><a href="#@nikovirtala/projen-typedoc.ValidationOptions">ValidationOptions</a></code> | Specify the base URL for links to source files. |
277
+
278
+ ---
279
+
280
+ ##### `basePath`<sup>Optional</sup> <a name="basePath" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.basePath"></a>
281
+
282
+ ```typescript
283
+ public readonly basePath: string;
284
+ ```
285
+
286
+ - *Type:* string
287
+
288
+ Specify the base path for all urls.
289
+
290
+ > [https://typedoc.org/options/output/#basepath](https://typedoc.org/options/output/#basepath)
291
+
292
+ ---
293
+
294
+ ##### `cacheBust`<sup>Optional</sup> <a name="cacheBust" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cacheBust"></a>
295
+
296
+ ```typescript
297
+ public readonly cacheBust: boolean;
298
+ ```
299
+
300
+ - *Type:* boolean
301
+
302
+ Specify the base URL for links to source files.
303
+
304
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
305
+
306
+ ---
307
+
308
+ ##### `categorizeByGroup`<sup>Optional</sup> <a name="categorizeByGroup" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.categorizeByGroup"></a>
309
+
310
+ ```typescript
311
+ public readonly categorizeByGroup: boolean;
312
+ ```
313
+
314
+ - *Type:* boolean
315
+
316
+ Specify the categories that will be used to group reflections.
317
+
318
+ > [https://typedoc.org/options/organization/#categorizebygroup](https://typedoc.org/options/organization/#categorizebygroup)
319
+
320
+ ---
321
+
322
+ ##### `cleanOutputDir`<sup>Optional</sup> <a name="cleanOutputDir" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cleanOutputDir"></a>
323
+
324
+ ```typescript
325
+ public readonly cleanOutputDir: boolean;
326
+ ```
327
+
328
+ - *Type:* boolean
329
+
330
+ Prevent TypeDoc from cleaning the output directory specified with --out.
331
+
332
+ > [https://typedoc.org/options/output/#cleanoutputdir](https://typedoc.org/options/output/#cleanoutputdir)
333
+
334
+ ---
335
+
336
+ ##### `commentStyle`<sup>Optional</sup> <a name="commentStyle" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.commentStyle"></a>
337
+
338
+ ```typescript
339
+ public readonly commentStyle: CommentStyle;
340
+ ```
341
+
342
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.CommentStyle">CommentStyle</a>
343
+
344
+ Specify the documentation mode TypeDoc should use.
345
+
346
+ > [https://typedoc.org/options/comments/#commentstyle](https://typedoc.org/options/comments/#commentstyle)
347
+
348
+ ---
349
+
350
+ ##### `defaultCategory`<sup>Optional</sup> <a name="defaultCategory" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultCategory"></a>
351
+
352
+ ```typescript
353
+ public readonly defaultCategory: string;
354
+ ```
355
+
356
+ - *Type:* string
357
+
358
+ Specify the default category for reflections without a category.
359
+
360
+ > [https://typedoc.org/options/organization/#defaultcategory](https://typedoc.org/options/organization/#defaultcategory)
361
+
362
+ ---
363
+
364
+ ##### `defaultGroup`<sup>Optional</sup> <a name="defaultGroup" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultGroup"></a>
365
+
366
+ ```typescript
367
+ public readonly defaultGroup: string;
368
+ ```
369
+
370
+ - *Type:* string
371
+
372
+ Specify the default group for reflections without a group.
373
+
374
+ > [https://typedoc.org/options/organization/#defaultgroup](https://typedoc.org/options/organization/#defaultgroup)
375
+
376
+ ---
377
+
378
+ ##### `defaultVisibility`<sup>Optional</sup> <a name="defaultVisibility" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultVisibility"></a>
379
+
380
+ ```typescript
381
+ public readonly defaultVisibility: Visibility;
382
+ ```
383
+
384
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.Visibility">Visibility</a>
385
+
386
+ Specify the default visibility for members without a visibility tag.
387
+
388
+ > [https://typedoc.org/options/comments/#defaultvisibility](https://typedoc.org/options/comments/#defaultvisibility)
389
+
390
+ ---
391
+
392
+ ##### `disableGit`<sup>Optional</sup> <a name="disableGit" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableGit"></a>
393
+
394
+ ```typescript
395
+ public readonly disableGit: boolean;
396
+ ```
397
+
398
+ - *Type:* boolean
399
+
400
+ Specify the base URL for links to source files.
401
+
402
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
403
+
404
+ ---
405
+
406
+ ##### `disableSources`<sup>Optional</sup> <a name="disableSources" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableSources"></a>
407
+
408
+ ```typescript
409
+ public readonly disableSources: boolean;
410
+ ```
411
+
412
+ - *Type:* boolean
413
+
414
+ Specify the base URL for links to source files.
415
+
416
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
417
+
418
+ ---
419
+
420
+ ##### `entryPoints`<sup>Optional</sup> <a name="entryPoints" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.entryPoints"></a>
421
+
422
+ ```typescript
423
+ public readonly entryPoints: string[];
424
+ ```
425
+
426
+ - *Type:* string[]
427
+
428
+ Specifies the entry points to be documented by TypeDoc.
429
+
430
+ > [https://typedoc.org/options/input/#entrypoints](https://typedoc.org/options/input/#entrypoints)
431
+
432
+ ---
433
+
434
+ ##### `entryPointStrategy`<sup>Optional</sup> <a name="entryPointStrategy" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.entryPointStrategy"></a>
435
+
436
+ ```typescript
437
+ public readonly entryPointStrategy: EntryPointStrategy;
438
+ ```
439
+
440
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.EntryPointStrategy">EntryPointStrategy</a>
441
+
442
+ Specifies the strategy to be used to convert entry points into documentation.
443
+
444
+ > [https://typedoc.org/options/input/#entrypointstrategy](https://typedoc.org/options/input/#entrypointstrategy)
445
+
446
+ ---
447
+
448
+ ##### `exclude`<sup>Optional</sup> <a name="exclude" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.exclude"></a>
449
+
450
+ ```typescript
451
+ public readonly exclude: string[];
452
+ ```
453
+
454
+ - *Type:* string[]
455
+
456
+ Define patterns to be excluded when expanding directories.
457
+
458
+ > [https://typedoc.org/options/input/#exclude](https://typedoc.org/options/input/#exclude)
459
+
460
+ ---
461
+
462
+ ##### `excludeExternals`<sup>Optional</sup> <a name="excludeExternals" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeExternals"></a>
463
+
464
+ ```typescript
465
+ public readonly excludeExternals: boolean;
466
+ ```
467
+
468
+ - *Type:* boolean
469
+
470
+ Prevent externally resolved symbols from being documented.
471
+
472
+ > [https://typedoc.org/options/input/#excludeexternals](https://typedoc.org/options/input/#excludeexternals)
473
+
474
+ ---
475
+
476
+ ##### `excludeInternal`<sup>Optional</sup> <a name="excludeInternal" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeInternal"></a>
477
+
478
+ ```typescript
479
+ public readonly excludeInternal: boolean;
480
+ ```
481
+
482
+ - *Type:* boolean
483
+
484
+ Prevent symbols that are not exported from being documented.
485
+
486
+ > [https://typedoc.org/options/input/#excludeinternal](https://typedoc.org/options/input/#excludeinternal)
487
+
488
+ ---
489
+
490
+ ##### `excludePrivate`<sup>Optional</sup> <a name="excludePrivate" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludePrivate"></a>
491
+
492
+ ```typescript
493
+ public readonly excludePrivate: boolean;
494
+ ```
495
+
496
+ - *Type:* boolean
497
+
498
+ Prevent private members from being included in the generated documentation.
499
+
500
+ > [https://typedoc.org/options/input/#excludeprivate](https://typedoc.org/options/input/#excludeprivate)
501
+
502
+ ---
503
+
504
+ ##### `excludeProtected`<sup>Optional</sup> <a name="excludeProtected" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeProtected"></a>
505
+
506
+ ```typescript
507
+ public readonly excludeProtected: boolean;
508
+ ```
509
+
510
+ - *Type:* boolean
511
+
512
+ Prevent protected members from being included in the generated documentation.
513
+
514
+ > [https://typedoc.org/options/input/#excludeprotected](https://typedoc.org/options/input/#excludeprotected)
515
+
516
+ ---
517
+
518
+ ##### `externalPattern`<sup>Optional</sup> <a name="externalPattern" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalPattern"></a>
519
+
520
+ ```typescript
521
+ public readonly externalPattern: string[];
522
+ ```
523
+
524
+ - *Type:* string[]
525
+
526
+ Specify the base URL for links to source files.
527
+
528
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
529
+
530
+ ---
531
+
532
+ ##### `externalSymbolLinkMappings`<sup>Optional</sup> <a name="externalSymbolLinkMappings" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalSymbolLinkMappings"></a>
533
+
534
+ ```typescript
535
+ public readonly externalSymbolLinkMappings: {[ key: string ]: {[ key: string ]: string}};
536
+ ```
537
+
538
+ - *Type:* {[ key: string ]: {[ key: string ]: string}}
539
+
540
+ Specify the base URL for links to source files.
541
+
542
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
543
+
544
+ ---
545
+
546
+ ##### `gitRemote`<sup>Optional</sup> <a name="gitRemote" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.gitRemote"></a>
547
+
548
+ ```typescript
549
+ public readonly gitRemote: string;
550
+ ```
551
+
552
+ - *Type:* string
553
+
554
+ Specify the git remote that should be used to link to source files.
555
+
556
+ > [https://typedoc.org/options/comments/#gitremote](https://typedoc.org/options/comments/#gitremote)
557
+
558
+ ---
559
+
560
+ ##### `gitRevision`<sup>Optional</sup> <a name="gitRevision" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.gitRevision"></a>
561
+
562
+ ```typescript
563
+ public readonly gitRevision: string;
564
+ ```
565
+
566
+ - *Type:* string
567
+
568
+ Specify the git revision that should be used to link to source files.
569
+
570
+ > [https://typedoc.org/options/comments/#gitrevision](https://typedoc.org/options/comments/#gitrevision)
571
+
572
+ ---
573
+
574
+ ##### `hideGenerator`<sup>Optional</sup> <a name="hideGenerator" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideGenerator"></a>
575
+
576
+ ```typescript
577
+ public readonly hideGenerator: boolean;
578
+ ```
579
+
580
+ - *Type:* boolean
581
+
582
+ Specify the base URL for links to source files.
583
+
584
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
585
+
586
+ ---
587
+
588
+ ##### `hideParameterTypesInTitle`<sup>Optional</sup> <a name="hideParameterTypesInTitle" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideParameterTypesInTitle"></a>
589
+
590
+ ```typescript
591
+ public readonly hideParameterTypesInTitle: boolean;
592
+ ```
593
+
594
+ - *Type:* boolean
595
+
596
+ Specify the base URL for links to source files.
597
+
598
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
599
+
600
+ ---
601
+
602
+ ##### `includes`<sup>Optional</sup> <a name="includes" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.includes"></a>
603
+
604
+ ```typescript
605
+ public readonly includes: string;
606
+ ```
607
+
608
+ - *Type:* string
609
+
610
+ Specify the location to look for included documents.
611
+
612
+ > [https://typedoc.org/options/output/#includes](https://typedoc.org/options/output/#includes)
613
+
614
+ ---
615
+
616
+ ##### `intentionallyNotExported`<sup>Optional</sup> <a name="intentionallyNotExported" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.intentionallyNotExported"></a>
617
+
618
+ ```typescript
619
+ public readonly intentionallyNotExported: string[];
620
+ ```
621
+
622
+ - *Type:* string[]
623
+
624
+ Specify the base URL for links to source files.
625
+
626
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
627
+
628
+ ---
629
+
630
+ ##### `json`<sup>Optional</sup> <a name="json" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.json"></a>
631
+
632
+ ```typescript
633
+ public readonly json: string;
634
+ ```
635
+
636
+ - *Type:* string
637
+
638
+ Specify the location the documentation should be written to.
639
+
640
+ > [https://typedoc.org/options/output/#json](https://typedoc.org/options/output/#json)
641
+
642
+ ---
643
+
644
+ ##### `logLevel`<sup>Optional</sup> <a name="logLevel" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.logLevel"></a>
645
+
646
+ ```typescript
647
+ public readonly logLevel: LogLevel;
648
+ ```
649
+
650
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.LogLevel">LogLevel</a>
651
+
652
+ Specify the logger that should be used.
653
+
654
+ > [https://typedoc.org/options/other/#loglevel](https://typedoc.org/options/other/#loglevel)
655
+
656
+ ---
657
+
658
+ ##### `media`<sup>Optional</sup> <a name="media" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.media"></a>
659
+
660
+ ```typescript
661
+ public readonly media: string;
662
+ ```
663
+
664
+ - *Type:* string
665
+
666
+ Specify the location with media files that should be copied to the output directory.
667
+
668
+ > [https://typedoc.org/options/output/#media](https://typedoc.org/options/output/#media)
669
+
670
+ ---
671
+
672
+ ##### `name`<sup>Optional</sup> <a name="name" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.name"></a>
673
+
674
+ ```typescript
675
+ public readonly name: string;
676
+ ```
677
+
678
+ - *Type:* string
679
+
680
+ Set the name of the project that will be used in the header of the template.
681
+
682
+ > [https://typedoc.org/options/output/#name](https://typedoc.org/options/output/#name)
683
+
684
+ ---
685
+
686
+ ##### `out`<sup>Optional</sup> <a name="out" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.out"></a>
687
+
688
+ ```typescript
689
+ public readonly out: string;
690
+ ```
691
+
692
+ - *Type:* string
693
+
694
+ Specifies the output directory the documentation should be written to.
695
+
696
+ > [https://typedoc.org/options/output/#out](https://typedoc.org/options/output/#out)
697
+
698
+ ---
699
+
700
+ ##### `packageJson`<sup>Optional</sup> <a name="packageJson" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.packageJson"></a>
701
+
702
+ ```typescript
703
+ public readonly packageJson: string;
704
+ ```
705
+
706
+ - *Type:* string
707
+
708
+ Specify the package.json file that should be used to determine the package name.
709
+
710
+ > [https://typedoc.org/options/input/#packagejson](https://typedoc.org/options/input/#packagejson)
711
+
712
+ ---
713
+
714
+ ##### `readme`<sup>Optional</sup> <a name="readme" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.readme"></a>
715
+
716
+ ```typescript
717
+ public readonly readme: string;
718
+ ```
719
+
720
+ - *Type:* string
721
+
722
+ Specify the readme file that should be displayed on the index page.
723
+
724
+ > [https://typedoc.org/options/input/#readme](https://typedoc.org/options/input/#readme)
725
+
726
+ ---
727
+
728
+ ##### `requiredToBeDocumented`<sup>Optional</sup> <a name="requiredToBeDocumented" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.requiredToBeDocumented"></a>
729
+
730
+ ```typescript
731
+ public readonly requiredToBeDocumented: string[];
732
+ ```
733
+
734
+ - *Type:* string[]
735
+
736
+ Specify the base URL for links to source files.
737
+
738
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
739
+
740
+ ---
741
+
742
+ ##### `searchCategoryBoosts`<sup>Optional</sup> <a name="searchCategoryBoosts" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchCategoryBoosts"></a>
743
+
744
+ ```typescript
745
+ public readonly searchCategoryBoosts: {[ key: string ]: number};
746
+ ```
747
+
748
+ - *Type:* {[ key: string ]: number}
749
+
750
+ Specify the search category boosts.
751
+
752
+ > [https://typedoc.org/options/organization/#searchcategoryboosts](https://typedoc.org/options/organization/#searchcategoryboosts)
753
+
754
+ ---
755
+
756
+ ##### `searchGroupBoosts`<sup>Optional</sup> <a name="searchGroupBoosts" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchGroupBoosts"></a>
757
+
758
+ ```typescript
759
+ public readonly searchGroupBoosts: {[ key: string ]: number};
760
+ ```
761
+
762
+ - *Type:* {[ key: string ]: number}
763
+
764
+ Specify the search group boosts.
765
+
766
+ > [https://typedoc.org/options/organization/#searchgroupboosts](https://typedoc.org/options/organization/#searchgroupboosts)
767
+
768
+ ---
769
+
770
+ ##### `searchInComments`<sup>Optional</sup> <a name="searchInComments" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInComments"></a>
771
+
772
+ ```typescript
773
+ public readonly searchInComments: boolean;
774
+ ```
775
+
776
+ - *Type:* boolean
777
+
778
+ Specify the base URL for links to source files.
779
+
780
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
781
+
782
+ ---
783
+
784
+ ##### `searchInDocuments`<sup>Optional</sup> <a name="searchInDocuments" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInDocuments"></a>
785
+
786
+ ```typescript
787
+ public readonly searchInDocuments: boolean;
788
+ ```
789
+
790
+ - *Type:* boolean
791
+
792
+ Specify the base URL for links to source files.
793
+
794
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
795
+
796
+ ---
797
+
798
+ ##### `sort`<sup>Optional</sup> <a name="sort" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sort"></a>
799
+
800
+ ```typescript
801
+ public readonly sort: string[];
802
+ ```
803
+
804
+ - *Type:* string[]
805
+
806
+ Specify the sort strategy for documented values.
807
+
808
+ > [https://typedoc.org/options/organization/#sort](https://typedoc.org/options/organization/#sort)
809
+
810
+ ---
811
+
812
+ ##### `sortEntryPoints`<sup>Optional</sup> <a name="sortEntryPoints" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sortEntryPoints"></a>
813
+
814
+ ```typescript
815
+ public readonly sortEntryPoints: boolean;
816
+ ```
817
+
818
+ - *Type:* boolean
819
+
820
+ Specify the sort strategy for static and instance members.
821
+
822
+ > [https://typedoc.org/options/organization/#sortentrypoints](https://typedoc.org/options/organization/#sortentrypoints)
823
+
824
+ ---
825
+
826
+ ##### `sourceUrlTemplate`<sup>Optional</sup> <a name="sourceUrlTemplate" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sourceUrlTemplate"></a>
827
+
828
+ ```typescript
829
+ public readonly sourceUrlTemplate: string;
830
+ ```
831
+
832
+ - *Type:* string
833
+
834
+ Specify the base URL for links to source files.
835
+
836
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
837
+
838
+ ---
839
+
840
+ ##### `theme`<sup>Optional</sup> <a name="theme" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.theme"></a>
841
+
842
+ ```typescript
843
+ public readonly theme: string;
844
+ ```
845
+
846
+ - *Type:* string
847
+
848
+ Specify a theme name to use.
849
+
850
+ > [https://typedoc.org/options/output/#theme](https://typedoc.org/options/output/#theme)
851
+
852
+ ---
853
+
854
+ ##### `treatValidationWarningsAsErrors`<sup>Optional</sup> <a name="treatValidationWarningsAsErrors" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatValidationWarningsAsErrors"></a>
855
+
856
+ ```typescript
857
+ public readonly treatValidationWarningsAsErrors: boolean;
858
+ ```
859
+
860
+ - *Type:* boolean
861
+
862
+ Specify the base URL for links to source files.
863
+
864
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
865
+
866
+ ---
867
+
868
+ ##### `treatWarningsAsErrors`<sup>Optional</sup> <a name="treatWarningsAsErrors" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatWarningsAsErrors"></a>
869
+
870
+ ```typescript
871
+ public readonly treatWarningsAsErrors: boolean;
872
+ ```
873
+
874
+ - *Type:* boolean
875
+
876
+ Specify the base URL for links to source files.
877
+
878
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
879
+
880
+ ---
881
+
882
+ ##### `tsBuildInfo`<sup>Optional</sup> <a name="tsBuildInfo" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.tsBuildInfo"></a>
883
+
884
+ ```typescript
885
+ public readonly tsBuildInfo: string;
886
+ ```
887
+
888
+ - *Type:* string
889
+
890
+ Specify the location and filename a .tsbuildinfo file should be written to.
891
+
892
+ > [https://typedoc.org/options/input/#tsbuildinfo](https://typedoc.org/options/input/#tsbuildinfo)
893
+
894
+ ---
895
+
896
+ ##### `tsconfig`<sup>Optional</sup> <a name="tsconfig" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.tsconfig"></a>
897
+
898
+ ```typescript
899
+ public readonly tsconfig: string;
900
+ ```
901
+
902
+ - *Type:* string
903
+
904
+ Specify a TypeScript config file that should be used to load TypeScript configuration.
905
+
906
+ > [https://typedoc.org/options/input/#tsconfig](https://typedoc.org/options/input/#tsconfig)
907
+
908
+ ---
909
+
910
+ ##### `validation`<sup>Optional</sup> <a name="validation" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.validation"></a>
911
+
912
+ ```typescript
913
+ public readonly validation: ValidationOptions;
914
+ ```
915
+
916
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.ValidationOptions">ValidationOptions</a>
917
+
918
+ Specify the base URL for links to source files.
919
+
920
+ > [https://typedoc.org/options/comments/#sourceurltemplate](https://typedoc.org/options/comments/#sourceurltemplate)
921
+
922
+ ---
923
+
924
+ ### TypeDocOptions <a name="TypeDocOptions" id="@nikovirtala/projen-typedoc.TypeDocOptions"></a>
925
+
926
+ #### Initializer <a name="Initializer" id="@nikovirtala/projen-typedoc.TypeDocOptions.Initializer"></a>
927
+
928
+ ```typescript
929
+ import { TypeDocOptions } from '@nikovirtala/projen-typedoc'
930
+
931
+ const typeDocOptions: TypeDocOptions = { ... }
932
+ ```
933
+
934
+ #### Properties <a name="Properties" id="Properties"></a>
935
+
936
+ | **Name** | **Type** | **Description** |
937
+ | --- | --- | --- |
938
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocOptions.property.typeDocConfig">typeDocConfig</a></code> | <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration">TypeDocConfiguration</a></code> | Full TypeDoc configuration. |
939
+ | <code><a href="#@nikovirtala/projen-typedoc.TypeDocOptions.property.version">version</a></code> | <code>string</code> | Version of TypeDoc to use. |
940
+
941
+ ---
942
+
943
+ ##### `typeDocConfig`<sup>Optional</sup> <a name="typeDocConfig" id="@nikovirtala/projen-typedoc.TypeDocOptions.property.typeDocConfig"></a>
944
+
945
+ ```typescript
946
+ public readonly typeDocConfig: TypeDocConfiguration;
947
+ ```
948
+
949
+ - *Type:* <a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration">TypeDocConfiguration</a>
950
+
951
+ Full TypeDoc configuration.
952
+
953
+ This configuration will be merged with the default configuration
954
+
955
+ ---
956
+
957
+ ##### `version`<sup>Optional</sup> <a name="version" id="@nikovirtala/projen-typedoc.TypeDocOptions.property.version"></a>
958
+
959
+ ```typescript
960
+ public readonly version: string;
961
+ ```
962
+
963
+ - *Type:* string
964
+ - *Default:* "^0.28"
965
+
966
+ Version of TypeDoc to use.
967
+
968
+ ---
969
+
970
+ ### ValidationOptions <a name="ValidationOptions" id="@nikovirtala/projen-typedoc.ValidationOptions"></a>
971
+
972
+ Validation options.
973
+
974
+ > [https://typedoc.org/options/validation/](https://typedoc.org/options/validation/)
975
+
976
+ #### Initializer <a name="Initializer" id="@nikovirtala/projen-typedoc.ValidationOptions.Initializer"></a>
977
+
978
+ ```typescript
979
+ import { ValidationOptions } from '@nikovirtala/projen-typedoc'
980
+
981
+ const validationOptions: ValidationOptions = { ... }
982
+ ```
983
+
984
+ #### Properties <a name="Properties" id="Properties"></a>
985
+
986
+ | **Name** | **Type** | **Description** |
987
+ | --- | --- | --- |
988
+ | <code><a href="#@nikovirtala/projen-typedoc.ValidationOptions.property.invalidLink">invalidLink</a></code> | <code>boolean</code> | If set, TypeDoc will produce warnings about \@link tags which will produce broken links. |
989
+ | <code><a href="#@nikovirtala/projen-typedoc.ValidationOptions.property.notDocumented">notDocumented</a></code> | <code>boolean</code> | If set, TypeDoc will produce warnings when an exported symbol is not documented. |
990
+ | <code><a href="#@nikovirtala/projen-typedoc.ValidationOptions.property.notExported">notExported</a></code> | <code>boolean</code> | If set, TypeDoc will produce warnings when a symbol is referenced by the documentation. |
991
+
992
+ ---
993
+
994
+ ##### `invalidLink`<sup>Optional</sup> <a name="invalidLink" id="@nikovirtala/projen-typedoc.ValidationOptions.property.invalidLink"></a>
995
+
996
+ ```typescript
997
+ public readonly invalidLink: boolean;
998
+ ```
999
+
1000
+ - *Type:* boolean
1001
+
1002
+ If set, TypeDoc will produce warnings about \@link tags which will produce broken links.
1003
+
1004
+ ---
1005
+
1006
+ ##### `notDocumented`<sup>Optional</sup> <a name="notDocumented" id="@nikovirtala/projen-typedoc.ValidationOptions.property.notDocumented"></a>
1007
+
1008
+ ```typescript
1009
+ public readonly notDocumented: boolean;
1010
+ ```
1011
+
1012
+ - *Type:* boolean
1013
+
1014
+ If set, TypeDoc will produce warnings when an exported symbol is not documented.
1015
+
1016
+ ---
1017
+
1018
+ ##### `notExported`<sup>Optional</sup> <a name="notExported" id="@nikovirtala/projen-typedoc.ValidationOptions.property.notExported"></a>
1019
+
1020
+ ```typescript
1021
+ public readonly notExported: boolean;
1022
+ ```
1023
+
1024
+ - *Type:* boolean
1025
+
1026
+ If set, TypeDoc will produce warnings when a symbol is referenced by the documentation.
1027
+
1028
+ ---
1029
+
1030
+
1031
+
1032
+ ## Enums <a name="Enums" id="Enums"></a>
1033
+
1034
+ ### CommentStyle <a name="CommentStyle" id="@nikovirtala/projen-typedoc.CommentStyle"></a>
1035
+
1036
+ Specifies the documentation mode TypeDoc should use.
1037
+
1038
+ > [https://typedoc.org/options/comments/#commentstyle](https://typedoc.org/options/comments/#commentstyle)
1039
+
1040
+ #### Members <a name="Members" id="Members"></a>
1041
+
1042
+ | **Name** | **Description** |
1043
+ | --- | --- |
1044
+ | <code><a href="#@nikovirtala/projen-typedoc.CommentStyle.JSDOC">JSDOC</a></code> | *No description.* |
1045
+ | <code><a href="#@nikovirtala/projen-typedoc.CommentStyle.BLOCK">BLOCK</a></code> | *No description.* |
1046
+ | <code><a href="#@nikovirtala/projen-typedoc.CommentStyle.LINE">LINE</a></code> | *No description.* |
1047
+ | <code><a href="#@nikovirtala/projen-typedoc.CommentStyle.ALL">ALL</a></code> | *No description.* |
1048
+
1049
+ ---
1050
+
1051
+ ##### `JSDOC` <a name="JSDOC" id="@nikovirtala/projen-typedoc.CommentStyle.JSDOC"></a>
1052
+
1053
+ ---
1054
+
1055
+
1056
+ ##### `BLOCK` <a name="BLOCK" id="@nikovirtala/projen-typedoc.CommentStyle.BLOCK"></a>
1057
+
1058
+ ---
1059
+
1060
+
1061
+ ##### `LINE` <a name="LINE" id="@nikovirtala/projen-typedoc.CommentStyle.LINE"></a>
1062
+
1063
+ ---
1064
+
1065
+
1066
+ ##### `ALL` <a name="ALL" id="@nikovirtala/projen-typedoc.CommentStyle.ALL"></a>
1067
+
1068
+ ---
1069
+
1070
+
1071
+ ### EntryPointStrategy <a name="EntryPointStrategy" id="@nikovirtala/projen-typedoc.EntryPointStrategy"></a>
1072
+
1073
+ Specifies the strategy to be used to convert entry points into documentation.
1074
+
1075
+ > [https://typedoc.org/options/input/#entrypointstrategy](https://typedoc.org/options/input/#entrypointstrategy)
1076
+
1077
+ #### Members <a name="Members" id="Members"></a>
1078
+
1079
+ | **Name** | **Description** |
1080
+ | --- | --- |
1081
+ | <code><a href="#@nikovirtala/projen-typedoc.EntryPointStrategy.RESOLVE">RESOLVE</a></code> | Expects all entry points to be contained within a single package. |
1082
+ | <code><a href="#@nikovirtala/projen-typedoc.EntryPointStrategy.EXPAND">EXPAND</a></code> | Expects all entry points to be top-level directories. |
1083
+ | <code><a href="#@nikovirtala/projen-typedoc.EntryPointStrategy.PACKAGES">PACKAGES</a></code> | Expects all entry points to be individual files. |
1084
+ | <code><a href="#@nikovirtala/projen-typedoc.EntryPointStrategy.MERGE">MERGE</a></code> | Merges multiple projects into a single documentation site. |
1085
+
1086
+ ---
1087
+
1088
+ ##### `RESOLVE` <a name="RESOLVE" id="@nikovirtala/projen-typedoc.EntryPointStrategy.RESOLVE"></a>
1089
+
1090
+ Expects all entry points to be contained within a single package.
1091
+
1092
+ ---
1093
+
1094
+
1095
+ ##### `EXPAND` <a name="EXPAND" id="@nikovirtala/projen-typedoc.EntryPointStrategy.EXPAND"></a>
1096
+
1097
+ Expects all entry points to be top-level directories.
1098
+
1099
+ ---
1100
+
1101
+
1102
+ ##### `PACKAGES` <a name="PACKAGES" id="@nikovirtala/projen-typedoc.EntryPointStrategy.PACKAGES"></a>
1103
+
1104
+ Expects all entry points to be individual files.
1105
+
1106
+ ---
1107
+
1108
+
1109
+ ##### `MERGE` <a name="MERGE" id="@nikovirtala/projen-typedoc.EntryPointStrategy.MERGE"></a>
1110
+
1111
+ Merges multiple projects into a single documentation site.
1112
+
1113
+ ---
1114
+
1115
+
1116
+ ### LogLevel <a name="LogLevel" id="@nikovirtala/projen-typedoc.LogLevel"></a>
1117
+
1118
+ Specifies the logger that should be used.
1119
+
1120
+ > [https://typedoc.org/options/other/#loglevel](https://typedoc.org/options/other/#loglevel)
1121
+
1122
+ #### Members <a name="Members" id="Members"></a>
1123
+
1124
+ | **Name** | **Description** |
1125
+ | --- | --- |
1126
+ | <code><a href="#@nikovirtala/projen-typedoc.LogLevel.VERBOSE">VERBOSE</a></code> | *No description.* |
1127
+ | <code><a href="#@nikovirtala/projen-typedoc.LogLevel.INFO">INFO</a></code> | *No description.* |
1128
+ | <code><a href="#@nikovirtala/projen-typedoc.LogLevel.WARN">WARN</a></code> | *No description.* |
1129
+ | <code><a href="#@nikovirtala/projen-typedoc.LogLevel.ERROR">ERROR</a></code> | *No description.* |
1130
+ | <code><a href="#@nikovirtala/projen-typedoc.LogLevel.NONE">NONE</a></code> | *No description.* |
1131
+
1132
+ ---
1133
+
1134
+ ##### `VERBOSE` <a name="VERBOSE" id="@nikovirtala/projen-typedoc.LogLevel.VERBOSE"></a>
1135
+
1136
+ ---
1137
+
1138
+
1139
+ ##### `INFO` <a name="INFO" id="@nikovirtala/projen-typedoc.LogLevel.INFO"></a>
1140
+
1141
+ ---
1142
+
1143
+
1144
+ ##### `WARN` <a name="WARN" id="@nikovirtala/projen-typedoc.LogLevel.WARN"></a>
1145
+
1146
+ ---
1147
+
1148
+
1149
+ ##### `ERROR` <a name="ERROR" id="@nikovirtala/projen-typedoc.LogLevel.ERROR"></a>
1150
+
1151
+ ---
1152
+
1153
+
1154
+ ##### `NONE` <a name="NONE" id="@nikovirtala/projen-typedoc.LogLevel.NONE"></a>
1155
+
1156
+ ---
1157
+
1158
+
1159
+ ### Visibility <a name="Visibility" id="@nikovirtala/projen-typedoc.Visibility"></a>
1160
+
1161
+ Specifies the default visibility for members without a visibility tag.
1162
+
1163
+ > [https://typedoc.org/options/comments/#defaultvisibility](https://typedoc.org/options/comments/#defaultvisibility)
1164
+
1165
+ #### Members <a name="Members" id="Members"></a>
1166
+
1167
+ | **Name** | **Description** |
1168
+ | --- | --- |
1169
+ | <code><a href="#@nikovirtala/projen-typedoc.Visibility.PUBLIC">PUBLIC</a></code> | *No description.* |
1170
+ | <code><a href="#@nikovirtala/projen-typedoc.Visibility.PROTECTED">PROTECTED</a></code> | *No description.* |
1171
+ | <code><a href="#@nikovirtala/projen-typedoc.Visibility.PRIVATE">PRIVATE</a></code> | *No description.* |
1172
+
1173
+ ---
1174
+
1175
+ ##### `PUBLIC` <a name="PUBLIC" id="@nikovirtala/projen-typedoc.Visibility.PUBLIC"></a>
1176
+
1177
+ ---
1178
+
1179
+
1180
+ ##### `PROTECTED` <a name="PROTECTED" id="@nikovirtala/projen-typedoc.Visibility.PROTECTED"></a>
1181
+
1182
+ ---
1183
+
1184
+
1185
+ ##### `PRIVATE` <a name="PRIVATE" id="@nikovirtala/projen-typedoc.Visibility.PRIVATE"></a>
1186
+
1187
+ ---
1188
+