/**
 * Interface that marks something as resettable.
 */
export interface IReset {
    /**
     * Reset it.
     */
    reset(): void;
}