Interface for classes that can be cleared.

interface IClearable {
    clear: () => void;
}

Properties

Properties

clear: () => void