UNPKG

sparnatural

Version:

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

19 lines (18 loc) 573 B
import { ISparnaturalSpecification } from "../spec-providers/ISparnaturalSpecification"; import SparnaturalComponent from "../components/SparnaturalComponent"; export declare enum MaxVarAction { INCREASE = 0, DECREASE = 1, RESET = 2 } declare class ActionStore { #private; sparnatural: SparnaturalComponent; specProvider: any; language: string; sparqlVarID: number; showVariableNames: boolean; quiet: boolean; constructor(sparnatural: SparnaturalComponent, specProvider: ISparnaturalSpecification); } export default ActionStore;