graphdb-workbench
Version:
The web application for GraphDB APIs
16 lines (15 loc) • 398 B
TypeScript
/**
* Represents a reference to a repository identified by an ID and location.
*/
export interface RepositoryReference {
/**
* Gets the unique identifier of the repository.
* @returns {string} The repository ID.
*/
get id(): string;
/**
* Gets the location of the repository.
* @returns {string} The repository location.
*/
get location(): string;
}