sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
17 lines (16 loc) • 685 B
TypeScript
import { ResetBtn } from "../buttons/ResetBtn";
import ComponentsList from "./ComponentsList";
import SparnaturalComponent from "../SparnaturalComponent";
import { ISparnaturalSpecification } from "../../spec-providers/ISparnaturalSpecification";
import { HTMLComponent } from "../HtmlComponent";
declare class BgWrapper extends HTMLComponent {
#private;
ParentSparnatural: SparnaturalComponent;
resetBtn: ResetBtn;
componentsList: ComponentsList;
specProvider: ISparnaturalSpecification;
constructor(ParentComponent: SparnaturalComponent, specProvider: ISparnaturalSpecification);
render(): this;
resetCallback: () => void;
}
export default BgWrapper;