UNPKG

vasille

Version:

The first Developer eXperience Orientated front-end framework (core library).

11 lines (10 loc) 166 B
/** * Mark an object which can be destroyed * @class Destroyable */ export class Destroyable { /** * Garbage collector method */ destroy() { } }