(type: SchemaType)
| 305 | } |
| 306 | |
| 307 | interfaces(type: SchemaType): string { |
| 308 | |
| 309 | return html.line(html.keyword('interface') + ' ' + html.identifier(type) + ' {') + |
| 310 | this.fields(type) + |
| 311 | html.line('}'); |
| 312 | } |
| 313 | |
| 314 | object(type: SchemaType): string { |
| 315 |
no test coverage detected