fix node registe event function type issue

KonvaEventListener will get a NodeEventMap entity, not NodeEventMap Key
This commit is contained in:
Yingjie Liu 2019-06-04 20:20:57 +08:00 committed by GitHub
parent 9c5abb0a30
commit 55dbae92f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -688,7 +688,7 @@ export abstract class Node<Config extends NodeConfig = NodeConfig> {
*/
on<K extends keyof NodeEventMap>(
evtStr: K,
handler: KonvaEventListener<this, K>
handler: KonvaEventListener<this, NodeEventMap[K]>
) {
if (arguments.length === 3) {
return this._delegate.apply(this, arguments);