UNPKG

graphdb-workbench

Version:
11 lines (10 loc) 531 B
import { RepositoryList } from '../../../models/repositories'; import { MapperFn } from '../../../providers/mapper/mapper-fn'; import { RepositoryListResponse } from '../response/repository-response'; /** * Maps server response data to a {@link RepositoryList} model. * * This mapper processes repository data grouped by location into a flat list of {@link Repository} * instances wrapped in a {@link RepositoryList}. */ export declare const mapRepositoryListResponseToModel: MapperFn<RepositoryListResponse, RepositoryList>;