Skip to content
Snippets Groups Projects
Commit 7f60ee73 authored by Glenn Vorhes's avatar Glenn Vorhes
Browse files

update

parent 654fbe9c
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -383,7 +383,7 @@ export abstract class LayerBase {
* Check if the layer is loaded
* @type {boolean}
*/
get loaded():boolean {
public get loaded():boolean {
return this._loaded;
}
......@@ -391,7 +391,7 @@ export abstract class LayerBase {
* get the layer source
* @type {*}
*/
get source(): Source {
public get source(): Source {
return this.getSource();
}
......@@ -403,14 +403,14 @@ export abstract class LayerBase {
/**
* get the z index
*/
get zIndex(): number {
public get zIndex(): number {
return this._zIndex;
}
/**
* set the z index
*/
set zIndex(newZ: number) {
public set zIndex(newZ: number) {
this._zIndex = newZ;
}
......
......@@ -14,7 +14,7 @@
"noEmitOnError": true,
"rootDir": "./src",
"outDir": "./dist",
"noImplicitAny": false,
"noImplicitAny": false
},
"exclude": ["test/*", "dist/*"]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment