From https://developers.google.com/closure/compiler/docs/js-for-compiler: "The type declaration and additional comment are optional. If you provide a type declaration, put the declaration on a separate line."
20 lines
317 B
JavaScript
20 lines
317 B
JavaScript
goog.provide('ol.css');
|
|
|
|
|
|
/**
|
|
* The CSS class that we'll give the DOM elements to have them unselectable.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_UNSELECTABLE = 'ol-unselectable';
|
|
|
|
|
|
/**
|
|
* The CSS class for unsupported feature.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_UNSUPPORTED = 'ol-unsupported';
|