UNPKG

sparnatural

Version:

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

18 lines (17 loc) 548 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; showVariableNames: boolean; quiet: boolean; constructor(sparnatural: SparnaturalComponent, specProvider: ISparnaturalSpecification); } export default ActionStore;