UNPKG

sparnatural

Version:

Visual client-side SPARQL query builder and knowledge graph exploration tool

21 lines (20 loc) 823 B
import { ISpecificationEntry } from "../ISpecificationEntry"; import { OWLSpecificationProvider } from "./OWLSpecificationProvider"; import { RdfStore } from "rdf-stores"; import { BaseRdfStore } from "../BaseRdfStore"; export declare class OWLSpecificationEntry extends BaseRdfStore 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[]; }