This change adds a stability value to the api annotation, with 'experimental' as default value. enum, typedef and event annotations are never exportable, but api annotations are needed there to make them appear in the docs. Nested typedefs are no longer inlined recursively, because the resulting tables get too wide with the current template.
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
goog.provide('ol.TileLoadFunctionType');
|
|
|
|
|
|
/**
|
|
* A function that takes an {@link ol.ImageTile} for the image tile and a
|
|
* `{string}` for the src as arguments.
|
|
*
|
|
* @typedef {function(ol.ImageTile, string)}
|
|
* @todo api
|
|
*/
|
|
ol.TileLoadFunctionType;
|