Merge pull request #1 from bolhovsky/ol-accessors

fix methods accessors
This commit is contained in:
Ilya Bolkhovsky
2014-01-09 06:18:35 -08:00
+5 -5
View File
@@ -611,7 +611,7 @@ declare module OpenLayers {
* openlayers.org homepage:
* http://trac.openlayers.org/wiki/SettingZoomLevels
*/
private initResolutions(): void;
initResolutions(): void;
/**
* Method: resolutionsFromScales
@@ -635,7 +635,7 @@ declare module OpenLayers {
* Returns:
* {Array({Number})} Array of resolutions.
*/
private calculateResolutions(props: Object): number[];
calculateResolutions(props: Object): number[];
/**
* APIMethod: getResolution
@@ -760,7 +760,7 @@ declare module OpenLayers {
* Returns:
* {Integer} the z-index of this layer
*/
private getZIndex(): number;
getZIndex(): number;
/**
* Method: setZIndex
@@ -768,7 +768,7 @@ declare module OpenLayers {
* Parameters:
* zIndex - {Integer}
*/
private setZIndex(zIndex: number): void;
setZIndex(zIndex: number): void;
/**
* Method: adjustBounds
@@ -781,7 +781,7 @@ declare module OpenLayers {
* Parameters:
* bounds - {<OpenLayers.Bounds>}
*/
private adjustBounds(bounds: Bounds): Bounds;
adjustBounds(bounds: Bounds): Bounds;
static CLASS_NAME: string;
}