UNPKG

graphdb-workbench

Version:
18 lines (17 loc) 675 B
import { RepositoryLocation } from '../../models/repository-location'; import { Service } from '../../providers/service/service'; /** * The RepositoryLocationService class is responsible for fetching repository-location-related data from the backend * and mapping the responses to application models. */ export declare class RepositoryLocationService implements Service { private locationRestService; private repositoryLocationMapper; constructor(); /** * Retrieves the current repository location. * * @returns A promise resolving to the active repository location. */ getActiveRepositoryLocation(): Promise<RepositoryLocation>; }