(options: PluginOptions, apiItem: Contracts.ApiDefinition)
| 16 | } |
| 17 | |
| 18 | public Render(options: PluginOptions, apiItem: Contracts.ApiDefinition): PluginResult { |
| 19 | return { |
| 20 | ...GeneratorHelpers.GetDefaultPluginResultData(), |
| 21 | Reference: options.Reference, |
| 22 | ApiItem: apiItem, |
| 23 | Result: [ |
| 24 | "# Debug Plugin", |
| 25 | "", |
| 26 | `${apiItem.Name}: ${apiItem.ApiKind}` |
| 27 | ] |
| 28 | }; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | async function Main(): Promise<void> { |
nothing calls this directly
no outgoing calls
no test coverage detected