UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

4 lines (3 loc) 253 B
export type BackingCanvas = OffscreenCanvas | HTMLCanvasElement; export type BackingCanvasContext = OffscreenCanvasRenderingContext2D | CanvasRenderingContext2D; export declare function createBackingCanvas(width: number, height: number): BackingCanvas;