AnimationTool/app/canvas_handler.ts

9 lines
201 B
TypeScript
Raw Normal View History

2019-09-26 01:59:16 +00:00
//I display the canvas and am clickable
export class CanvasHandler {
private currentImageDiv: HTMLElement;
constructor(currentImageDiv: HTMLElement) {
this.currentImageDiv = currentImageDiv;
}
}