UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

13 lines (9 loc) 240 B
'use strict'; const GenerateTask = require('./generate-from-blueprint'); class DestroyTask extends GenerateTask { constructor(options) { super(options); this.blueprintFunction = 'uninstall'; } } module.exports = DestroyTask;