sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
9 lines (8 loc) • 388 B
TypeScript
import { OptionsGroup } from "../builder-section/groupwrapper/criteriagroup/optionsgroup/OptionsGroup";
import { HTMLComponent } from "../HtmlComponent";
export declare class OptionalArrow extends HTMLComponent {
selected: boolean;
callBack: (selected: boolean) => void;
constructor(ParentComponent: OptionsGroup, callBack: (selected: boolean) => void);
render(): this;
}