graphdb-workbench
Version:
The web application for GraphDB APIs
14 lines (13 loc) • 333 B
TypeScript
export interface RepositoryLocationResponse {
uri: string;
label: string;
username: string | null;
password: string | null;
authType: string | null;
locationType: string | null;
defaultRepository: string | null;
active: boolean;
local: boolean;
system: boolean;
errorMsg: string | null;
}