5 lines
191 B
TypeScript
5 lines
191 B
TypeScript
export default abstract class Canvas {
|
|
constructor(protected readonly canvas: HTMLCanvasElement) {}
|
|
public abstract decode(buffer: Uint8Array, width: number, height: number): void;
|
|
}
|