Represents an item in a repository from a source provider.

interface SourceRepositoryItem {
    isContainer?: boolean;
    path?: string;
    type?: string;
    url?: string;
}

Properties

isContainer?: boolean

Whether the item is able to have sub-items (e.g., is a folder).

path?: string

The full path of the item, relative to the root of the repository.

type?: string

The type of the item (folder, file, etc).

url?: string

The URL of the item.