summaryrefslogtreecommitdiff
path: root/src/scripts/views/layers/layer.ts
blob: 5e5295ac3ff215bae805f30c94bb53a4dbdd14a3 (plain)
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;
}