Interface DiffNavigator

interface DiffNavigator {
    hasNext(): boolean;
    hasPrevious(): boolean;
    next(): void;
    previous(): void;
}

Methods