mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-25 17:45:03 +03:00
25 lines
451 B
JavaScript
25 lines
451 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @see [Nowhere](http://nowhere.com)
|
|
*/
|
|
function foo() {}
|
|
|
|
/**
|
|
* @see AnObject#myProperty
|
|
*/
|
|
function bar() {}
|
|
|
|
/**
|
|
* @classdesc My class.
|
|
* @description My class.
|
|
* @exception {Error} Some error.
|
|
* @param {string} myParam - My parameter.
|
|
* @property {string} value - Value of myParam.
|
|
* @return {MyClass} Class instance.
|
|
* @see [Example Inc.](http://example.com)
|
|
*/
|
|
function MyClass(myParam) {
|
|
this.value = myParam;
|
|
}
|