Represents the path components of a file or directory returned by the browse endpoint.

interface BitbucketBrowsePath {
    components: string[];
    extension: string;
    name: string;
    parent: string;
    toString: string;
}

Properties

components: string[]
extension: string
name: string
parent: string
toString: string