Last active
September 12, 2019 04:40
-
-
Save vlio20/090dc84c64b7592e86c62338031d0085 to your computer and use it in GitHub Desktop.
debounce
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
class MapView { | |
@debounce(100); | |
onScroll(): void { | |
// some code | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment