2015-04-22 08:06:51 -07:00

24 lines
540 B
Plaintext

.l-main-section
h2 onDestroy <span class="type">variable</span>
p.location-badge.
exported from <a href="/angular2/annotations">angular2/annotations</a>
:markdown
Notify a directive whenever a <a href="angular2/annotations/View-class"><code>View</code></a> that contains it is destroyed.
## Example
```
@Decorator({
...,
lifecycle: [onDestroy]
})
class ClassSet {
onDestroy() {
// invoked to notify directive of the containing view destruction.
}
}
```