21
21
*/
22
22
import { DeclarationOption , ParameterType } from 'typedoc' ;
23
23
import { ALLOWED_OWN_FILE_MEMBERS , TEXT_CONTENT_MAPPINGS } from './constants' ;
24
- import { IndexFormat , OutputFileStrategy , ReflectionFormat } from './maps' ;
24
+ import { DisplayFormat , OutputFileStrategy } from './maps' ;
25
25
26
26
/**
27
27
* TypeDoc creates documentation according to exports derived from the given [`entryPointsStrategy`](https://typedoc.org/options/input/#entrypointstrategy) configuration.
@@ -350,8 +350,8 @@ export const expandParameters: Partial<DeclarationOption> = {
350
350
export const indexFormat : Partial < DeclarationOption > = {
351
351
help : 'Sets the format of index items.' ,
352
352
type : ParameterType . Map ,
353
- map : IndexFormat ,
354
- defaultValue : IndexFormat . List ,
353
+ map : DisplayFormat ,
354
+ defaultValue : DisplayFormat . List ,
355
355
} ;
356
356
357
357
/**
@@ -366,8 +366,8 @@ export const indexFormat: Partial<DeclarationOption> = {
366
366
export const parametersFormat : Partial < DeclarationOption > = {
367
367
help : 'Sets the format of parameter and type parameter groups.' ,
368
368
type : ParameterType . Map ,
369
- map : ReflectionFormat ,
370
- defaultValue : ReflectionFormat . List ,
369
+ map : DisplayFormat ,
370
+ defaultValue : DisplayFormat . List ,
371
371
} ;
372
372
373
373
/**
@@ -382,8 +382,8 @@ export const parametersFormat: Partial<DeclarationOption> = {
382
382
export const interfacePropertiesFormat : Partial < DeclarationOption > = {
383
383
help : 'Sets the format of property groups for interfaces.' ,
384
384
type : ParameterType . Map ,
385
- map : ReflectionFormat ,
386
- defaultValue : ReflectionFormat . List ,
385
+ map : DisplayFormat ,
386
+ defaultValue : DisplayFormat . List ,
387
387
} ;
388
388
389
389
/**
@@ -398,8 +398,8 @@ export const interfacePropertiesFormat: Partial<DeclarationOption> = {
398
398
export const classPropertiesFormat : Partial < DeclarationOption > = {
399
399
help : 'Sets the format of property groups for classes.' ,
400
400
type : ParameterType . Map ,
401
- map : ReflectionFormat ,
402
- defaultValue : ReflectionFormat . List ,
401
+ map : DisplayFormat ,
402
+ defaultValue : DisplayFormat . List ,
403
403
} ;
404
404
405
405
/**
@@ -414,8 +414,8 @@ export const classPropertiesFormat: Partial<DeclarationOption> = {
414
414
export const enumMembersFormat : Partial < DeclarationOption > = {
415
415
help : 'Sets the format of enumeration members.' ,
416
416
type : ParameterType . Map ,
417
- map : ReflectionFormat ,
418
- defaultValue : ReflectionFormat . List ,
417
+ map : DisplayFormat ,
418
+ defaultValue : DisplayFormat . List ,
419
419
} ;
420
420
421
421
/**
@@ -430,8 +430,8 @@ export const enumMembersFormat: Partial<DeclarationOption> = {
430
430
export const typeDeclarationFormat : Partial < DeclarationOption > = {
431
431
help : 'Sets the format of style for type declaration members.' ,
432
432
type : ParameterType . Map ,
433
- map : ReflectionFormat ,
434
- defaultValue : ReflectionFormat . List ,
433
+ map : DisplayFormat ,
434
+ defaultValue : DisplayFormat . List ,
435
435
} ;
436
436
437
437
/**
@@ -448,8 +448,8 @@ export const typeDeclarationFormat: Partial<DeclarationOption> = {
448
448
export const propertyMembersFormat : Partial < DeclarationOption > = {
449
449
help : 'Sets the format of style for property members for interfaces and classes.' ,
450
450
type : ParameterType . Map ,
451
- map : ReflectionFormat ,
452
- defaultValue : ReflectionFormat . List ,
451
+ map : DisplayFormat ,
452
+ defaultValue : DisplayFormat . List ,
453
453
} ;
454
454
455
455
/**
@@ -462,8 +462,8 @@ export const propertyMembersFormat: Partial<DeclarationOption> = {
462
462
export const propertiesFormat : Partial < DeclarationOption > = {
463
463
help : 'Sets the format of property groups for interfaces and classes.' ,
464
464
type : ParameterType . Map ,
465
- map : ReflectionFormat ,
466
- defaultValue : ReflectionFormat . List ,
465
+ map : DisplayFormat ,
466
+ defaultValue : DisplayFormat . List ,
467
467
} ;
468
468
469
469
/**
0 commit comments