/** * Interface representing a canvas. */ export default interface ICanvasShape { width: number; height: number; }