Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 10 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import path from 'path'; |
||
2 | import Base from './TemplateReporter'; |
||
3 | |||
4 | const templatePath = path.join(__dirname, '../../templates/reporters/api-blueprint.md'); |
||
5 | |||
6 | export default class ApiBluePrint extends Base { |
||
7 | constructor(file) { |
||
8 | super(file, { path: templatePath }); |
||
9 | } |
||
10 | } |
||
11 |