sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
11 lines (10 loc) • 348 B
TypeScript
import { HTMLComponent } from "../HtmlComponent";
export declare class SelectViewVariableBtn extends HTMLComponent {
#private;
selected: boolean;
callBack: (selected: boolean) => void;
constructor(ParentComponent: HTMLComponent, callBack: (selected: boolean) => void);
render(): this;
disable(): void;
enable(): void;
}