UNPKG

vasille

Version:

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

21 lines (20 loc) 380 B
/** * Mark an object which can be destroyed * @interface IDestroyable */ export interface IDestroyable { /** * Garbage collector method */ destroy(): void; } /** * Mark an object which can be destroyed * @class Destroyable */ export declare class Destroyable implements IDestroyable { /** * Garbage collector method */ destroy(): void; }