sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
11 lines (10 loc) • 446 B
TypeScript
import { Term } from "@rdfjs/types/data-model";
import { StoreModel } from "../../rdf/StoreModel";
export declare class StatisticsReader {
protected store: StoreModel;
constructor(store: StoreModel);
hasStatistics(shape: Term): boolean;
getDistinctObjectsCountForShape(shape: Term): number | undefined;
getTriplesCountForShape(shape: Term): number | undefined;
getEntitiesCountForShape(shape: Term): number | undefined;
}