UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

10 lines (9 loc) 222 B
declare class Canvas { constructor(width: any, height: any); width: any; height: any; getContext(): any; toDataURL(): string; } export function createCanvas(width: any, height: any): Canvas; export {};