You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
IronOverlayManager is a singleton instance of a class. The class itself is @private. Also the class is created by directly writing to .prototype, which Analyzer doesn't really understand (at least not without a lot of annotations). For this, we probably just want to manually write all of the typings and add them with addReferences.
The text was updated successfully, but these errors were encountered:
IronScrollManager
is missingcurrentLockingElement
, because it is a getter, and the Analyzer namespace scanner does not handle getters. We can either fix https://github.com/Polymer/polymer-analyzer/issues/866, or use theaddReferences
setting ingen-tsd.json
to augment the namespace with a manually written version. Augmenting will also require fixing https://github.com/Polymer/gen-typescript-declarations/issues/86, however, because otherwise the manually written file will get deleted every time the typings are re-generated.IronOverlayManager
is a singleton instance of a class. The class itself is@private
. Also the class is created by directly writing to.prototype
, which Analyzer doesn't really understand (at least not without a lot of annotations). For this, we probably just want to manually write all of the typings and add them withaddReferences
.The text was updated successfully, but these errors were encountered: