UNPKG

closure-builder

Version:

Simple Closure, Soy and JavaScript Build system

35 lines (27 loc) 446 B
/** * Closure test dummy export */ goog.provide('closure_test_export'); /** * @constructor * @final * @export */ closure_test_export = function() { /** @type {!string} */ this.test = 'Hello World'; }; /** * @export * @return {!boolean} */ closure_test_export.prototype.visible = function() { return true; }; /** * @private * @return {!boolean} */ closure_test_export.prototype.invisible_ = function() { return true; };