(opts: MakerOptions)
| 119 | */ |
| 120 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 121 | async make(opts: MakerOptions): Promise<string[]> { |
| 122 | if (this.make === Maker.prototype.make) { |
| 123 | throw new Error(`Maker ${this.name} did not implement the make method`); |
| 124 | } |
| 125 | return []; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Helpers |
no outgoing calls
no test coverage detected