(context: PreprocessContext)
| 6 | import type { PreprocessContext } from "./context.js"; |
| 7 | |
| 8 | export const preprocess = (context: PreprocessContext) => { |
| 9 | rewriteTypeTitles(context); |
| 10 | removeEmptyAllOfs(context); |
| 11 | removeRedundantDataTypeInheritance(context); |
| 12 | identifyLinkEntityTypes(context); |
| 13 | /* @todo - if properties are empty, remove the `allOf` */ |
| 14 | }; |
no test coverage detected