File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ type _ModelToObject<T> =
47
47
* to add custom properties to the exported interfaces.
48
48
* For example, if your custom serializer adds a property to all [[Reflection]] objects:
49
49
* ```ts
50
- * declare module 'typedoc' {
50
+ * declare module 'typedoc/dist/lib/serialization/schema ' {
51
51
* export namespace JSONOutput {
52
52
* export interface AbstractReflection {
53
53
* myCustomProp: boolean
@@ -59,7 +59,7 @@ type _ModelToObject<T> =
59
59
* If a plugin defines a new Model type, [[ModelToObject]] will not pick up the serializer type.
60
60
* To fix this, use declaration merging to augment the [[Serializer]] class.
61
61
* ```ts
62
- * declare module 'typedoc' {
62
+ * declare module 'typedoc/dist/lib/serialization/serializer ' {
63
63
* export interface Serializer {
64
64
* toObject(value: CustomModel, obj?: Partial<CustomModel>): CustomOutput
65
65
* }
You can’t perform that action at this time.
0 commit comments