(
sample: string,
additionalRendererOptions: RendererOptions
)
| 185 | } |
| 186 | |
| 187 | async runQuicktype( |
| 188 | sample: string, |
| 189 | additionalRendererOptions: RendererOptions |
| 190 | ): Promise<void> { |
| 191 | // FIXME: add options |
| 192 | await quicktypeForLanguage( |
| 193 | this.language, |
| 194 | sample, |
| 195 | "json", |
| 196 | true, |
| 197 | additionalRendererOptions |
| 198 | ); |
| 199 | } |
| 200 | |
| 201 | async test( |
| 202 | filename: string, |
no test coverage detected