()
| 48 | } |
| 49 | |
| 50 | async run(): Promise<TableData> { |
| 51 | let td = await this.build(); |
| 52 | td = this.relate(td); |
| 53 | const tt = this.generate(td); |
| 54 | td.text = tt; |
| 55 | await this.write(td); |
| 56 | return td; |
| 57 | } |
| 58 | |
| 59 | build(): Promise<TableData> { |
| 60 | const builder = new AutoBuilder(this.sequelize, this.options); |