(image: Buffer | null)
| 5 | private hasData = false; |
| 6 | |
| 7 | public pushImage(image: Buffer | null) { |
| 8 | this.image = image; |
| 9 | this.hasData = true; |
| 10 | this._read(); |
| 11 | } |
| 12 | |
| 13 | // eslint-disable-next-line @typescript-eslint/naming-convention |
| 14 | public override _read() { |
no test coverage detected