(props: TComponentProps)
| 6 | component: DefineComponent<TComponentProps, {}, unknown>, |
| 7 | ) { |
| 8 | function Plugin(props: TComponentProps) { |
| 9 | return { |
| 10 | name, |
| 11 | component, |
| 12 | props, |
| 13 | } |
| 14 | } |
| 15 | function NoOpPlugin(props: TComponentProps) { |
| 16 | return { |
| 17 | name, |
nothing calls this directly
no outgoing calls
no test coverage detected