sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
21 lines (20 loc) • 826 B
TypeScript
import { ISpecificationEntry } from "../ISpecificationEntry";
import { OWLSpecificationProvider } from "./OWLSpecificationProvider";
import { RdfStore } from "rdf-stores";
import { BaseRDFReader } from "../BaseRDFReader";
export declare class OWLSpecificationEntry extends BaseRDFReader implements ISpecificationEntry {
uri: string;
provider: OWLSpecificationProvider;
constructor(uri: string, provider: OWLSpecificationProvider, n3store: RdfStore, lang: string);
getId(): string;
getLabel(): string;
getTooltip(): string | undefined;
getColor(): string | undefined;
/**
* Reads config:order of an entity and returns it, or undefined if not set
**/
getOrder(): string | undefined;
getIcon(): string;
getHighlightedIcon(): string | undefined;
getParents(): string[];
}