UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

15 lines (14 loc) 423 B
/** * @implements globalThis.HTMLCanvasElement */ export class HTMLCanvasElement extends HTMLElement implements globalThis.HTMLCanvasElement { set width(value: any); get width(): any; set height(value: any); get height(): any; getContext(type: any): any; toDataURL(...args: any[]): any; [IMAGE]: any; } import { HTMLElement } from './element.js'; import { IMAGE } from '../shared/symbols.js';