Interface representing an object that can be cleared and flushed.

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

Properties

Properties

clear: () => void
flush: () => void
pending: () => boolean