From 690e9db4f61d5fbcf3cb9619cdda423092fe7145 Mon Sep 17 00:00:00 2001 From: delphinus Date: Wed, 20 Jan 2016 21:28:03 +0900 Subject: [PATCH] Add internal properties extended for Marionette.View --- marionette/marionette.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/marionette/marionette.d.ts b/marionette/marionette.d.ts index b120961cf0..4209677d21 100644 --- a/marionette/marionette.d.ts +++ b/marionette/marionette.d.ts @@ -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; } /**