Allow styles to be null

This commit is contained in:
Tom Payne
2013-11-07 19:43:25 +01:00
parent 25d6919337
commit ce296aa1d1

View File

@@ -57,9 +57,9 @@ ol.style.stroke.equals = function(strokeStyle1, strokeStyle2) {
/**
* @typedef {{fill: ol.style.Fill,
* image: ol.style.Image,
* stroke: ol.style.Stroke,
* @typedef {{fill: ?ol.style.Fill,
* image: ?ol.style.Image,
* stroke: ?ol.style.Stroke,
* zIndex: number}}
*/
ol.style.Style;