sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
9 lines (8 loc) • 331 B
TypeScript
import { HTMLComponent } from "../HtmlComponent";
import { Order } from "../../SparnaturalQueryIfc";
export declare class DescendBtn extends HTMLComponent {
selected: boolean;
constructor(ParentComponent: HTMLComponent, callBack: (order: Order) => void);
setSelected: (selected: boolean) => void;
render(): this;
}