Move jsdoc constructor comments

This commit is contained in:
Frederic Junod
2018-07-17 10:20:26 +02:00
parent f2d0b11d24
commit 540b1793e7
23 changed files with 259 additions and 238 deletions

View File

@@ -391,12 +391,14 @@ function createStyleDefaults() {
* Note that the KML format uses the URL() constructor. Older browsers such as IE
* which do not support this will need a URL polyfill to be loaded before use.
*
* @constructor
* @extends {module:ol/format/XMLFeature}
* @param {module:ol/format/KML~Options=} opt_options Options.
* @api
*/
class KML {
/**
* @param {module:ol/format/KML~Options=} opt_options Options.
*/
constructor(opt_options) {
const options = opt_options ? opt_options : {};