Schema for information about missing revs and possible ancestors.

interface RevsDiff {
    missing?: string[];
    possible_ancestors?: string[];
}

Properties

missing?: string[]

List of missing revisions.

possible_ancestors?: string[]

List of possible ancestor revisions.

Generated using TypeDoc