mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Merge pull request #5506 from Tyriar/shared_compile
Fix type error in SharedRendererTests.ts
This commit is contained in:
@@ -1417,7 +1417,7 @@ async function getFrameDetails(ctx: ITestContext): Promise<{ cols: number, rows:
|
||||
frameDetails = {
|
||||
cols: await ctx.proxy.cols,
|
||||
rows: await ctx.proxy.rows,
|
||||
decoded: (await decodePng(buffer, { force32: true })).image
|
||||
decoded: (await decodePng(new Uint8Array(buffer), { force32: true })).image
|
||||
};
|
||||
return frameDetails;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user