types: fix wrong order

This commit is contained in:
Evan You 2018-10-13 21:14:52 -04:00
parent a9b608266e
commit 24ff686848

View File

@ -102,7 +102,7 @@ export interface ComponentInstance<P = {}, D = {}>
_updateHandle: Autorun _updateHandle: Autorun
_queueJob: ((fn: () => void) => void) _queueJob: ((fn: () => void) => void)
_self: ComponentInstance<D, P> // on proxies only _self: ComponentInstance<P, D> // on proxies only
} }
// actual implementation of the component // actual implementation of the component