Post-Processors
→ classes representing LCE post-processors
- located in
typescript/src/core/post-processors
- all files end with
.post-processor.ts
- may export one or more concept classes each
- all files end with
Notes for creating new post-processor classes:
- each post-processor class must inherit from
PostProcessor
and implement thepostProcess
method - all post-processors need to be registered in the
POST_PROCESSORS
feature collection infeatures.ts
- before implementing a new post-processor check if there already exists one that could be modified to also solve the problem at hand