9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
|
//I display the canvas and am clickable
|
||
|
export class CanvasHandler {
|
||
|
private currentImageDiv: HTMLElement;
|
||
|
|
||
|
constructor(currentImageDiv: HTMLElement) {
|
||
|
this.currentImageDiv = currentImageDiv;
|
||
|
}
|
||
|
}
|