Add internal properties extended for Marionette.View

This commit is contained in:
delphinus
2016-01-20 21:28:03 +09:00
parent 64be42a608
commit 690e9db4f6
+7
View File
@@ -796,6 +796,13 @@ declare module Marionette {
* This event / callback is useful for DOM-dependent UI plugins such as jQueryUI or KendoUI.
*/
onDomRefresh(): void;
/**
* Internal properties extended in Marionette.View.
*/
isDestroyed: boolean;
supportsRenderLifecycle: boolean;
supportsDestroyLifecycle: boolean;
}
/**