graphdb-workbench
Version:
The web application for GraphDB APIs
19 lines (18 loc) • 603 B
TypeScript
import { Repository, RepositoryState, RepositoryType } from '../../../models/repositories';
export declare class RepositoryMockProvider {
static provideRepository(id: string, location?: string): Repository;
static provideRawRepository(id: string, location?: string): {
id: string;
location: string;
title: string;
externalUrl: string;
local: boolean;
readable: boolean;
sesameType: string;
state: RepositoryState;
type: RepositoryType;
unsupported: boolean;
uri: string;
writable: boolean;
};
}