(params: IParams)
| 52 | } |
| 53 | |
| 54 | public hook(params: IParams): void { |
| 55 | this._size = 0; |
| 56 | this._aborted = false; |
| 57 | if (this._dec) { |
| 58 | const fillColor = params.params[1] === 1 ? 0 : extractActiveBg( |
| 59 | this._coreTerminal._core._inputHandler._curAttrData, |
| 60 | this._coreTerminal._core._themeService?.colors); |
| 61 | this._dec.init(fillColor, null, this._opts.sixelPaletteLimit); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | public put(data: Uint32Array, start: number, end: number): void { |
| 66 | if (this._aborted || !this._dec) { |
nothing calls this directly
no test coverage detected