Created
March 11, 2016 01:36
-
-
Save garlicnation/e94b9e7ee6ba10ca33f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @record | |
*/ | |
var LocalDomWithBackground = function(){}; | |
/** | |
* @type HTMLElement | |
*/ | |
LocalDomWithBackground.prototype.backgroundFrontLayer; | |
/** | |
* @type HTMLElement | |
*/ | |
LocalDomWithBackground.prototype.backgroundRearLayer; | |
/** | |
* @record | |
* @extends PolymerElement | |
*/ | |
var ElementWithBackground = function(){}; | |
/** @type LocalDomWithBackground */ | |
ElementWithBackground.prototype.$; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment