| 2 | import type { PolygenModuleConfig, Project } from '@callstack/polygen-project'; |
| 3 | |
| 4 | export interface CodegenPlugin { |
| 5 | name: string; |
| 6 | definition: PluginDefinition; |
| 7 | } |
| 8 | |
| 9 | export interface PluginCodegenHooks { |
| 10 | beforeModulesGenerated?(codegen: Codegen): Promise<void> | void; |
nothing calls this directly
no outgoing calls
no test coverage detected