19 lines
450 B
JavaScript
19 lines
450 B
JavaScript
/** @constructor */
|
|
Astro.Blog.Components.Bubble = function() {};
|
|
|
|
/** @type {Function} */
|
|
Astro.Blog.Components.Bubble.prototype.init;
|
|
|
|
/** @type {Function} */
|
|
Astro.Blog.Components.Bubble.prototype.blurp;
|
|
|
|
/** @type {Function}
|
|
* @param {String} mesg
|
|
*/
|
|
Astro.Blog.Components.Bubble.prototype.pop = function( mesg ) { };
|
|
|
|
/** @type {Function}
|
|
* @param {String} color
|
|
*/
|
|
Astro.Blog.Components.Bubble.prototype.setColor = function( color ) { };
|