Represents a resource that can be cleaned up by calling the dispose method.

interface IDisposable {
    dispose(): void;
}

Hierarchy (View Summary)

Methods

Methods

  • When called, cleans up any resources.

    Returns void