Use Array<Foo> instead of Array.<Foo>

This commit is contained in:
Tim Schaub
2018-07-25 18:32:43 -07:00
parent 5a6502572f
commit d12ef20b12
184 changed files with 1194 additions and 1194 deletions

View File

@@ -12,7 +12,7 @@ import SourceState from '../source/State.js';
* A function that returns a string or an array of strings representing source
* attributions.
*
* @typedef {function(module:ol/PluggableMap~FrameState): (string|Array.<string>)} Attribution
* @typedef {function(module:ol/PluggableMap~FrameState): (string|Array<string>)} Attribution
*/
@@ -24,7 +24,7 @@ import SourceState from '../source/State.js';
* * an array of simple strings (e.g. `['© Acme Inc.', '© Bacme Inc.']`)
* * a function that returns a string or array of strings (`{@link module:ol/source/Source~Attribution}`)
*
* @typedef {string|Array.<string>|module:ol/source/Source~Attribution} AttributionLike
* @typedef {string|Array<string>|module:ol/source/Source~Attribution} AttributionLike
*/
@@ -124,7 +124,7 @@ class Source extends BaseObject {
/**
* @abstract
* @return {Array.<number>|undefined} Resolutions.
* @return {Array<number>|undefined} Resolutions.
*/
getResolutions() {}