Skip to content

Commit

Permalink
Remove offscreen canvas (#9617)
Browse files Browse the repository at this point in the history
  • Loading branch information
etimberg committed Sep 5, 2021
1 parent e9ed186 commit 6c47a98
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions types/index.esm.d.ts
Expand Up @@ -537,11 +537,9 @@ export const registerables: readonly ChartComponentLike[];
export declare type ChartItem =
| string
| CanvasRenderingContext2D
| OffscreenCanvasRenderingContext2D
| HTMLCanvasElement
| OffscreenCanvas
| { canvas: HTMLCanvasElement | OffscreenCanvas }
| ArrayLike<CanvasRenderingContext2D | HTMLCanvasElement | OffscreenCanvas>;
| { canvas: HTMLCanvasElement }
| ArrayLike<CanvasRenderingContext2D | HTMLCanvasElement>;

export declare enum UpdateModeEnum {
resize = 'resize',
Expand Down

0 comments on commit 6c47a98

Please sign in to comment.