Represents a Subversion mapping entry.

interface SvnMappingDetails {
    depth?: number;
    ignoreExternals?: boolean;
    localPath?: string;
    revision?: string;
    serverPath?: string;
}

Properties

depth?: number

The depth.

ignoreExternals?: boolean

Indicates whether to ignore externals.

localPath?: string

The local path.

revision?: string

The revision.

serverPath?: string

The server path.