UNPKG

@kephas/core

Version:

Provides a common infrastructure for all the other Kephas Framework components: ambient services, dynamic reflection, composition, application management, and others.

15 lines (14 loc) 251 B
/** * Provides the dispose() method. * * @export * @interface Disposable */ export interface Disposable { /** * Disposes the resources hold by the instance. * * @memberof Disposable */ dispose(): void; }