1 2 3 4 5 6 7 8
/** * Interface for a subview, representing a layer of the map view. */ export interface Layer { container: createjs.Container; draw(): void; }