Minor updates to Doctests.

This commit is contained in:
2019-07-12 14:50:30 +02:00
parent e1b5c45b52
commit 0e8c62eb4b
4 changed files with 24 additions and 5 deletions
+15
View File
@@ -2974,6 +2974,20 @@
/* eslint-disable no-unused-vars */
/** This interface allows scatters to delegate tap events to other objects. */
class ITapDelegate extends Interface {
/** This method must be defined by the delegate. It handles the tap event. */
tap(event) {
}
/** Tells the delegate that it should handle standard click events. */
handleClicks() {
}
}
/**
* A base class for scatter specific events.
*
@@ -7737,6 +7751,7 @@
window.IApp = IApp;
window.IInteractionMapperTarget = IInteractionMapperTarget;
window.IInteractionTarget = IInteractionTarget;
window.ITapDelegate = ITapDelegate;
window.Index = Index;
window.Inspect = Inspect;
window.Interaction = Interaction;